无法使用32位PowerShell卸载x64 TargetPlatform msi

时间:2014-12-18 11:30:52

标签: windows-installer powershell-v2.0

我有一个带有TargetPlatform x64位模式的msi。我还在我的机器上安装了PowerShell 2.0,它以32位模式运行。我使用powershell脚本安装了msi。现在,当我尝试使用PowerShell脚本卸载msi时,如下所述,我收到一个错误:

无法找到应用程序TestSetup

function Uninstall-MSI([string]$name)
{
    $success = $false

    # Read installation information from the registry
    $registryLocation = Get-ChildItem "HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\"
    foreach ($registryItem in $registryLocation)
    {
        # If we get a match on the application name
        if ((Get-itemproperty $registryItem.PSPath).DisplayName -eq $name)
        {
            # Get the product code if possible
            $productCode = (Get-itemproperty $registryItem.PSPath).ProductCode

            # If a product code is available, uninstall using it
            if ([string]::IsNullOrEmpty($productCode) -eq $false)
            {
                Write-Host "Uninstalling $name, ProductCode:$code"              
                $args="/uninstall $code"

                [diagnostics.process]::start("msiexec", $args).WaitForExit()                
                $success = $true
            }
            # If there is no product code, try to read the uninstall string
            else
            {
                $uninstallString = (Get-itemproperty $registryItem.PSPath).UninstallString

                if ([string]::IsNullOrEmpty($uninstallString) -eq $false)
                {
                    # Grab the product key and create an argument string
                    $match = [RegEx]::Match($uninstallString, "{.*?}")
                    $args = "/x $($match.Value) /qn"

                    [diagnostics.process]::start("msiexec", $args).WaitForExit()
                    Write-Host $uninstallString                 
                    $success = $true
                }
                else { throw "Unable to uninstall $name" }
            }           
        }
    }

    if ($success -eq $false)
    { throw "Unable to find application $name" }
}

Uninstall-MSI "TestSetup"

然后我将MSI更新为x86位模式并执行安装,然后尝试使用与上述相同的PowerShell脚本进行卸载。它没有任何问题,对我有用。

有人可以帮我解决上述问题吗?

1 个答案:

答案 0 :(得分:0)

我进一步分析了这个问题,发现在我的机器中,Powershell进程以32位模式运行,而msi采用TargetPlatform x64位模式。以32位模式运行的Powershell进程无法读取64位模式应用程序的注册表项。我在一个Web服务器上进行了测试,我在Powershell中运行x64位模式,msi使用TargetPlatform x64位模式,它对我来说很好。