Add uninstall scripts for VCarve packages

This commit is contained in:
Adam Goldsmith 2020-10-29 16:59:57 -04:00
parent bd33612803
commit 1964b11c46
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,8 @@
$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

View File

@ -0,0 +1,8 @@
$packageArgs = @{
PackageName = 'vcarve-pro-trial-10.5'
FileType = 'exe'
File = 'C:\Program Files\VCarve Pro Trial Edition 10.5\uninst.exe'
SilentArgs = '/S'
}
Uninstall-ChocolateyPackage @packageArgs