许多管理员喜欢使用PowerShell来自动执行用户创建和文件夹权限管理这类组件功能,但是,虚拟化技术也可以通过命令行管理,包括微软Hyper-V。
虽然有多种方法可以用PowerShell来管理Hyper-V,但本文将重点介绍如何免费使用Windows管理规范(WMI)脚本(来自CodePlex的开源工具)的方法。
在使用WMI脚本来管理Hyper-V之前,了解哪些类可用很重要。微软列出了大量的类。虽然相当完整,但他们不一定易于使用,并且总是不直观。因此,使用WMI来管理Hyper-V不适合心理承受能力弱的人。
使用PowerShell管理Hyper-V的比较流行方法之一是使用针对Hyper-V(PSHyperV)的PowerShell管理库。这是由James O’Neil所写的免费且开源的CodePlex项目。这是迄今为止最好的选择。它提供一个完整cmdlet集给管理员使用,可以处理从虚拟机存储管理到网络管理的所有事情。让我们来了解其中的一些:
Get-VM——返回一个Hyper-V服务器上所有的虚拟机。
下面的代码展示了Get-VM命令: | Function Get-VM | | { | | param( | | [parameter(ValueFromPipeLine = $true)] | | [ValidateNotNullOrEmpty()][Alias("VMName")] | | $Name = "%", | | [parameter()][ValidateNotNullOrEmpty()] | | $Server = ".", | | [Switch]$Suspended, | | [switch]$Running, | | [switch]$Stopped | | ) | | Process { | | | | if ($Name.count -gt 1 ) {[Void]$PSBoundParameters.Remove("Name") | | ; $Name | ForEach-object {Get-VM -Name $_ @PSBoundParameters}} | | if ($name -is [String]) { | | $Name = $Name.Replace("*","%") | | | | did not work in languages other than English. | | | | the host has a null process ID, stopped VMs have an ID of 0. | | $WQL = "SELECT * FROM MSVM_ComputerSystem WHERE ElementName | | LIKE '$Name' AND ProcessID >= 0" | | if ($Running -or $Stopped -or $Suspended) { | | $state = "" | | if ($Running) {$State += " or enabledState = " + | | [int][VMState]::Running } | | if ($Stopped) {$State += " or enabledState = " + | | [int][VMState]::Stopped } | | if ($Suspended) {$State += " or enabledState = " + | | [int][VMState]::Suspended } | | $state = $state.substring(4) | | $WQL += " AND ($state)" | | } | | Get-WmiObject -computername $Server -NameSpace $HyperVNamespace -Query $WQL | Add-Member -MemberType ALIASPROPERTY -Name "VMElementName" -Value "ElementName" -PassThru | | } | | elseif ($name.__class) { | | Switch ($name.__class) { | | "Msvm_ComputerSystem" {$Name} | | "Msvm_VirtualSystemSettingData" {get-wmiobject - | | computername $Name.__SERVER -namespace $HyperVNamespace -Query | | "associators of {$($name.__path)} where | | resultclass=Msvm_ComputerSystem"} | | Default get-wmiobject - | | computername $Name.__SERVER -namespace $HyperVNamespace -Query | | "associators of {$($Name.__path)} where | | resultclass=Msvm_VirtualSystemSettingData" | | | ForEach-Object | | {$_.getRelated("Msvm_ComputerSystem")} | Select-object -unique } | | } | | } | | } | | }COPY |
如您所见,这段代码包含了WMI基本类和helper逻辑并报告了结果。
Get-VMSwitch——返回所有在Hyper-V服务器上的虚拟交换。
下面的代码展示了Get-VMSwitch的命令: | Function Get-VMSwitch | | { | | param( | | [parameter(ValueFromPipeline = $true)][Alias("Name")] | | [String]$VirtualSwitchName="%", | | [parameter()][ValidateNotNullOrEmpty()] | | $Server = "." | | ) | | process { | | $VirtualSwitchName=$VirtualSwitchName.replace("*","%") | | Get-WmiObject -computerName $server -NameSpace $HyperVNamespace | | -query "Select * From MsVM_VirtualSwitch Where elementname like '$VirtualSwitchname' " | | } | | }COPY |
Get-VMSnapShot——提供所有在Hyper-V服务器上的快照。
下面的语句展示了Get-VMSnapShot命令: | Function Get-VMSnapshot | | { | | Param( | | [parameter(Position=0 , ValueFromPipeline = $true)] | | $VM = "%", | | [String]$Name="%", | | [parameter()][ValidateNotNullOrEmpty()] | | $Server="." , | | [Switch]$Current, | | [Switch]$Newest, | | [Switch]$Root | | ) | | process{ | | if ($VM -is [String]) {$VM=(Get-VM -Name $VM -Server $server) } | | if ($VM.count -gt 1 ) {[Void]$PSBoundParameters.Remove("VM") ; $VM | | | ForEach-object { Get-VMSnapshot -VM $_ @PSBoundParameters}} | | if ($vm.__CLASS -eq 'Msvm_ComputerSystem') { | | if ($current) {Get-wmiobject -computerNam $vm.__server - | | Namespace $HyperVNamespace -q "associators of {$($vm.path)} where assocClass=MSvm_PreviousSettingData"} | | else {$Snaps=Get-WmiObject -computerName $vm.__server -NameSpace $HyperVNameSpace -Query "Select * From MsVM_VirtualSystemSettingData Where systemName='$($VM.name)' and | | instanceID <> 'Microsoft:$($VM.name)' and elementName like '$name' " | | if ($newest) {$Snaps | sort-object -property | | creationTime | select-object -last 1 } | | elseif ($root) {$snaps | where-object {$_.parent -eq | | $null} } | | else {$snaps} | | } | | } | | } | | }COPY |
可以从CodePlex的网站上找到PSHyperV的多种附加功能来帮助管理员执行查找、操作和配置hypervisor的不同的组件等相关任务。
编写WMI包装器和使用PSHyperV,只是管理员用PowerShell来管理Hyper-V的一些方式。请注意,PSHyperV的最新版本并不是完整的版本,因此,它不像其他软件那么稳定。 |