From 1964b11c46da355bc7d8f6c3bcd3a59fb6ddb292 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Thu, 29 Oct 2020 16:59:57 -0400 Subject: [PATCH] Add uninstall scripts for VCarve packages --- vcarve-pro-makerspace-10.5/tools/chocolateyUninstall.ps1 | 8 ++++++++ vcarve-pro-trial-10.5/tools/chocolateyUninstall.ps1 | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 vcarve-pro-makerspace-10.5/tools/chocolateyUninstall.ps1 create mode 100644 vcarve-pro-trial-10.5/tools/chocolateyUninstall.ps1 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