Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
Here's how to check Storage Migration status using Windows PowerShell.
January 10, 2013
Q: How can I check Storage Migration status by using Windows PowerShell?
A: It's possible to query the WMI job that is used as part of the Storage Migration by using the Get-WmiObject PowerShell cmdlet. The virtualization namespace is used and the class is Msvm_MigrationJob. An example is shown below.
PS C:> Get-WmiObject -Namespace rootvirtualizationv2 -Class Msvm_MigrationJob | ft Name, JobStatus, PercentComplete, VirtualSystemName
You May Also Like