feat: MultiPar 1.2.2.6

- https://www.livebusinesschat.com/smf/index.php?board=396.0
 - http://multipar.eu/
This commit is contained in:
Iristyle
2013-06-24 15:55:12 -04:00
parent dbb6e8750c
commit baaac7cda6
4 changed files with 119 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
$package = 'MultiPar'
try {
$path = ${Env:ProgramFiles(x86)}, $Env:ProgramFiles |
% { Join-Path $_ $package } |
? { Test-Path $_ } |
Select -First 1
if ($path)
{
Push-Location $path
$uninstaller = '.\unins000.exe'
if (Test-Path $uninstaller)
{
$unargs = '/silent', '/verysilent', '/suppressmsgboxes', '/norestart'
&$uninstaller $unargs
}
}
Write-ChocolateySuccess $package
} catch {
Write-ChocolateyFailure $package "$($_.Exception.Message)"
throw
}