7 lines
241 B
PowerShell
7 lines
241 B
PowerShell
|
$packageName = "{{.Choco.ID}}";
|
||
|
$fileType = 'msi';
|
||
|
$scriptPath = $(Split-Path $MyInvocation.MyCommand.Path);
|
||
|
$fileFullPath = Join-Path $scriptPath '{{.Choco.MsiFile}}';
|
||
|
|
||
|
Uninstall-ChocolateyPackage $packageName $fileType "$fileFullPath /q"
|