Quantcast
Viewing all articles
Browse latest Browse all 3474

Re: Scheduling clones in PowerShell

If you run:

Get-SmCloneJob | Get-Member

It'll show you all of the properties associated with the cmdlet. You may be able to get additional detail by selecting a property that isn't displayed by default. You can do that by running:

Get-SmCloneJob | Select-Object -Property <property name> 

or by capturing the command output in a variable and then using the "$variable.PropertyName" syntax to output the value of a single property. 


Viewing all articles
Browse latest Browse all 3474

Trending Articles