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