diff --git a/vcarve-pro-makerspace-10.5/tools/chocolateyUninstall.ps1 b/vcarve-pro-makerspace-10.5/tools/chocolateyUninstall.ps1 new file mode 100644 index 0000000..f4c0ccc --- /dev/null +++ b/vcarve-pro-makerspace-10.5/tools/chocolateyUninstall.ps1 @@ -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 diff --git a/vcarve-pro-trial-10.5/tools/chocolateyUninstall.ps1 b/vcarve-pro-trial-10.5/tools/chocolateyUninstall.ps1 new file mode 100644 index 0000000..3ad21ef --- /dev/null +++ b/vcarve-pro-trial-10.5/tools/chocolateyUninstall.ps1 @@ -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