Check Storage Migration Status from PowerShell

Check on Storage Migration status using Windows PowerShell and WMI.

John Savill

January 10, 2013

1 Min Read
Check Storage Migration Status from PowerShell

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

 

About the Author

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.

You May Also Like