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