|
Powershell 操作hyper-v一般性操作
1. 启动
viewplain
- $hostServer = "shlihu-2k8r2";
- $vmName="Win7-Pro2";
-
- function GetImageState
- {
- param
- (
- [string]$image = $(throw "param -image is required."),
- [string]$hostServer = $(throw "param -hostserver is required.")
- )
- $virtualMachines = Get-WmiObject -Class "MSVM_ComputerSystem" -Namespace "root\virtualization" -ComputerName $hostServer;
- foreach ($virtualMachine in $virtualMachines)
- {
- if ($image -ieq $virtualMachine.ElementName)
- {
- return $virtualMachine.EnabledState;
- }
- }
- throw "Cannot get the state of image [$image] on host server [$hostServer]";
- }
-
- function WaitImageToState
- {
- param
- (
- [string]$image = $(throw "param -image is required."),
- [string]$hostServer = $(throw "param -hostserver is required."),
- [int]$state = $(throw "param -$state is required."),
- [int]$timeOut = $(throw "param -$timeOut is required.")
- )
- do
- {
- $timeOut = $timeOut - 5;
- sleep (5);
- $currentState = GetImageState -image:$image -hostserver:$hostServer;
- if ($currentState -eq $state)
- {
- return;
- }
-
- if ($timeOut -le 0)
- {
- throw "Wait for image [$image] to state [$state] time out.";
- }
- }while($true);
- }
-
- "Start up the virtual machine..." + $hostServer
- Set-ExecutionPolicy -ExecutionPolicy RemoteSigned
- $virtualMachines = Get-WmiObject -Class "MSVM_ComputerSystem" -Namespace "root\virtualization" -ComputerName $hostServer;
- $virtualMachineRun = 2;
- foreach ($virtualMachine in $virtualMachines)
- {
- if($virtualMachine.ElementName -eq $vmName)
- {
- $result = $virtualMachine.RequestStateChange($virtualMachineRun);
- if ($result.ReturnValue -ne 4096)
- {
- throw "Failed to send start request to VM - " + $virtualMachine;
- }
- WaitImageToState -image:$virtualMachine.ElementName -hostserver:$hostServer -state:$virtualMachineRun -timeOut:60;
- }
- }
- $vmName + "startup Finished!"
2. 关闭
viewplain
- $hostServer = "shlihu-2k8r2";
- $vmName="Win7-Pro2";
- function GetImageState
- {
- param
- (
- [string]$image = $(throw "param -image is required."),
- [string]$hostServer = $(throw "param -hostserver is required.")
- )
- $virtualMachines = Get-WmiObject -Class "MSVM_ComputerSystem" -Namespace "root\virtualization" -ComputerName $hostServer;
- foreach ($virtualMachine in $virtualMachines)
- {
- if ($image -ieq $virtualMachine.ElementName)
- {
- return $virtualMachine.EnabledState;
- }
- }
- throw "Cannot get the state of image [$image] on host server [$hostServer]";
- }
-
- function WaitImageToState
- {
- param
- (
- [string]$image = $(throw "param -image is required."),
- [string]$hostServer = $(throw "param -hostserver is required."),
- [int]$state = $(throw "param -$state is required."),
- [int]$timeOut = $(throw "param -$timeOut is required.")
- )
- do
- {
- $timeOut = $timeOut - 5;
- sleep (5);
- $currentState = GetImageState -image:$image -hostserver:$hostServer;
- if ($currentState -eq $state)
- {
- return;
- }
-
- if ($timeOut -le 0)
- {
- throw "Wait for image [$image] to state [$state] time out.";
- }
- }while($true);
- }
-
- "Shutdown the virtual machine..."
- Set-ExecutionPolicy -ExecutionPolicy RemoteSigned
- $virtualMachines = Get-WmiObject -Class "MSVM_ComputerSystem" -Namespace "root\virtualization" -ComputerName $hostServer;
- $virtualMachineRun = 3;
- foreach ($virtualMachine in $virtualMachines)
- {
- if($virtualMachine.ElementName -eq $vmName)
- {
- $result = $virtualMachine.RequestStateChange($virtualMachineRun);
- if ($result.ReturnValue -ne 4096)
- {
- throw "Failed to send start request to VM - " + $virtualMachine;
- }
- WaitImageToState -image:$virtualMachine.ElementName -hostserver:$hostServer -state:$virtualMachineRun -timeOut:60;
- }
- }
- $vmName + "Shutdown Finished!"
3. 获取虚拟机状态
viewplain
- $hostServer = "shlihu-2k8r2";
- $vmName="Win7-Pro2";
- $status = -1
- $virtualMachines = Get-WmiObject -Class "MSVM_ComputerSystem" -Namespace "root\virtualization" -ComputerName $hostServer
- foreach ($virtualMachine in $virtualMachines)
- {
- if ($vmName -ieq $virtualMachine.ElementName)
- {
- $status = $virtualMachine.EnabledState
- break
- }
- }
-
- switch($status)
- {
- -1 {throw "Cannot get the state of vmName [$vmName] on host server [$hostServer]"}
- 2 {"Running."}
- 3 {"Closed."}
- 32768 {"Paused."}
- 32769 {"Saved."}
- 32770 {"Starting."}
- 32773 {"Saving."}
- 32774 {"Stopping."}
- 32776 {"Pausing."}
- 32777 {"Restoring."}
- default {"Unknow Status."}
- }
4. 获取snapshot列表
viewplain
- $hostServer = "shlihu-2k8r2";
- $vmName="Win7-Pro2";
-
- $virtualMachines = Get-WmiObject -Class "MSVM_ComputerSystem" -Namespace "root\virtualization" -ComputerName $hostServer;
- foreach ($virtualMachine in $virtualMachines)
- {
- if($virtualMachine.ElementName -eq $vmName)
- {
- # get snapshots of the virtual machine
- $queryStr = "SELECT * FROM Msvm_VirtualSystemSettingData WHERE SystemName='" + $virtualMachine.Name + "' and SettingType=5";
- $snapShots = Get-WmiObject -Query $queryStr -Namespace "root\virtualization" -ComputerName $hostServer;
-
- foreach ($aSnapShot in $snapShots)
- {
- $aSnapShot.ElementName
- [System.DateTime]::ParseExact($aSnapShot.CreationTime.Substring(0,14), "yyyyMMddHHmmss", $null).ToLocalTime().ToString()
- $aSnapShot.Notes
- }
- }
- }
5. 恢复snapshot
viewplain
- $hostServer = "shlihu-2k8r2";
- $vmName="Win7-Pro2";
- $snapshotName ="Win7-Pro2 -VS2010-Silk2010r2-Completed-Install"
- function GetImageState
- {
- param
- (
- [string]$image = $(throw "param -image is required."),
- [string]$hostServer = $(throw "param -hostserver is required.")
- )
- $virtualMachines = Get-WmiObject -Class "MSVM_ComputerSystem" -Namespace "root\virtualization" -ComputerName $hostServer;
- foreach ($virtualMachine in $virtualMachines)
- {
- if ($image -ieq $virtualMachine.ElementName)
- {
- return $virtualMachine.EnabledState;
- }
- }
- throw "Cannot get the state of image [$image] on host server [$hostServer]";
- }
-
- function WaitImageToState
- {
- param
- (
- [string]$image = $(throw "param -image is required."),
- [string]$hostServer = $(throw "param -hostserver is required."),
- [int]$state = $(throw "param -$state is required."),
- [int]$timeOut = $(throw "param -$timeOut is required.")
- )
- do
- {
- $timeOut = $timeOut - 5;
- sleep (5);
- $currentState = GetImageState -image:$image -hostserver:$hostServer;
- if ($currentState -eq $state)
- {
- return;
- }
-
- if ($timeOut -le 0)
- {
- throw "Wait for image [$image] to state [$state] time out.";
- }
- }while($true);
- }
-
- "Rollback the virtual machine..."
- $virtualMachines = Get-WmiObject -Class "MSVM_ComputerSystem" -Namespace "root\virtualization" -ComputerName $hostServer;
- $virtualSystemService = Get-WmiObject -Class "Msvm_VirtualSystemManagementService" -Namespace "root\virtualization" -ComputerName $hostServer;
- foreach ($virtualMachine in $virtualMachines)
- {
- if($virtualMachine.ElementName -eq $vmName)
- {
- # get snapshot of the virtual machine
- $queryStr = "SELECT * FROM Msvm_VirtualSystemSettingData WHERE SystemName='" + $virtualMachine.Name + "' and SettingType=5";
- $snapShots = Get-WmiObject -Query $queryStr -Namespace "root\virtualization" -ComputerName $hostServer;
- foreach ($aSnapShot in $snapShots)
- {
- # revert to specified snapshot
- if ($aSnapShot.ElementName -ieq $snapshotName)
- {
- # apply snapshot
- $result = $virtualSystemService.ApplyVirtualSystemSnapShot($virtualMachine.__PATH, $aSnapShot.__PATH);
- if ($result.ReturnValue -ne 0)
- {
- throw "Failed to apply snapshot ["+$snapshotName+"] to VM ["+$image+"]";
- }
- WaitImageToState -image:$virtualMachine.ElementName -hostserver:$hostServer -state:32769 -timeOut:120;
- }
- }
- }
- }
- "Finished rollback!"
6. 网络操作
使用powershell重启网络(非常有用)
Import-Module tr*
Get-TroubleshootingPack C:\Windows\diagnostics\system\Networking| Invoke-TroubleshootingPack -Unattended
http://msdn.microsoft.com/en-us/library/dd323718
http://blogs.technet.com/b/heyscriptingguy/archive/2011/02/09/use-powershell-troubleshooting-packs-to-diagnose-remote-problems.aspx
http://blogs.msdn.com/b/dimeby8/archive/2009/06/10/change-unidentified-network-from-public-to-work-in-windows-7.aspx
版权声明:本文为博主原创文章,未经博主允许不得转载。 |
|