DSCResources/POSHOrigin_vSphere_VM/Provisioners/Powershell/Deprovision.ps1
[cmdletbinding()] param( [parameter(mandatory)] $Options ) begin { Write-Debug -Message 'Powershell script deprovisioner: beginning' } process { $scriptPath = $Options.ProvOptions.Path if (Test-Path -Path $scriptPath) { & $scriptPath -Options $Options -Mode 'Deprovision' } else { Write-Error -Message "Unable to find provisioner script [$scriptPath]" } } end { Write-Debug -Message 'Powershell script deprovisioner: ending' } |