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