DSCResources/DSC_WaitForVolume/DSC_WaitForVolume.schema.mof
1 2 3 4 5 6 7 8 9 |
[ClassVersion("1.0.0.0"), FriendlyName("WaitForVolume")] class DSC_WaitForVolume : OMI_BaseResource { [Key, Description("Specifies the drive letter of the volume to wait for.")] String DriveLetter; [Write, Description("Specifies the number of seconds to wait for the volume to become available.")] Uint32 RetryIntervalSec; [Write, Description("The number of times to loop the retry interval while waiting for the volume.")] Uint32 RetryCount; }; |