Files
ChocolateyPackages/SQL2008R2.ClrTypes/tools/chocolateyUninstall.ps1
Iristyle 9137d9f777 feat: SQL2008R2.ClrTypes 10.50.1600.0
- 10.50.1600.1 because zippy1981 bungled the pushed packages
2013-07-23 21:01:04 -04:00

27 lines
715 B
PowerShell

# HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\
$msiId = '{A47FD1BF-A815-4A76-BE65-53A15BD5D25D}'
$msiId64 = '{4701DEDE-1888-49E0-BAE5-857875924CA2}'
$package = 'SQL2008R2.ClrTypes'
$IsSystem32Bit = (($Env:PROCESSOR_ARCHITECTURE -eq 'x86') -and ($Env:PROCESSOR_ARCHITEW6432 -eq $null))
try {
$uninstallParams = @{
PackageName = $package;
FileType = 'MSI';
SilentArgs = "$msiId /qb";
ValidExitCodes = @(0)
}
if ($IsSystem32Bit) { $uninstallParams.SilentArgs = "$msiId64 /qb" }
Uninstall-ChocolateyPackage
Write-ChocolateySuccess $package
} catch {
Write-ChocolateyFailure $package "$($_.Exception.Message)"
throw
}