Misc/SynergyDE64ResourceGenerator.ps1
$ensure = New-xDscResourceProperty -Name Ensure -Type String -Attribute Write -ValidateSet "Present","Absent" -Description "Should the VM be created or deleted" $cc = New-xDscResourceProperty -Name CoreComponents -Type String -Attribute Write -ValidateSet "Present","Absent" -Description "Should the VM be created or deleted" $xs = New-xDscResourceProperty -Name xfSeries -Type String -Attribute Write -ValidateSet "Present","Absent" -Description "Should the VM be created or deleted" $cn = New-xDscResourceProperty -Name Ensure -Type String -Attribute Write -ValidateSet "Present","Absent" -Description "Should the VM be created or deleted" New-xDscResource -Name SynergyDE64 -Property @($cc,$xs,$cn) -Path . -ClassVersion 1.0.0 -FriendlyName SynergyDE64 |