examples/Resources/ChocolateyPin/3-ChocolateyPin_RemovePin.ps1
configuration Chocolatey { Import-DscResource -ModuleName Chocolatey Node localhost { ChocolateyPin AddPintoPackage { Ensure = 'Absent' Name = 'Putty' Version = '0.71' } } } |