9 lines
221 B
PowerShell
9 lines
221 B
PowerShell
|
$packageArgs = @{
|
||
|
PackageName = 'vcarve-pro-trial-12.0'
|
||
|
FileType = 'exe'
|
||
|
File = 'C:\Program Files\VCarve Pro Trial Edition 12.0\uninst.exe'
|
||
|
SilentArgs = '/S'
|
||
|
}
|
||
|
|
||
|
Uninstall-ChocolateyPackage @packageArgs
|