Как проверить, установлен ли конкретный MSI? - PullRequest
6 голосов
/ 21 января 2011

Я пишу скрипт powershell, который установит некоторые зависимости для моего веб-приложения. В моем сценарии я сталкиваюсь с постоянной проблемой проверки, установлено ли определенное приложение. кажется, что существует уникальный способ проверки, существует ли приложение для каждого приложения (то есть путем проверки наличия этой папки или этого файла на c :) Разве я не могу проверить, установлено ли приложение, запросив список установленных приложений?

Ответы [ 3 ]

13 голосов
/ 21 января 2011

Чтобы получить список установленных приложений, попробуйте:

$r = Get-WmiObject Win32_Product | Where {$_.Name -match 'Microsoft Web Deploy' }
if ($r -ne $null) { ... }

См. Документацию по Win32_Product для получения дополнительной информации.

11 голосов
/ 21 января 2011

Вот код, который я иногда использую (не слишком часто, так что ...).Подробности см. В комментариях к справке.

<#
.SYNOPSIS
    Gets uninstall records from the registry.

.DESCRIPTION
    This function returns information similar to the "Add or remove programs"
    Windows tool. The function normally works much faster and gets some more
    information.

    Another way to get installed products is: Get-WmiObject Win32_Product. But
    this command is usually slow and it returns only products installed by
    Windows Installer.

    x64 notes. 32 bit process: this function does not get installed 64 bit
    products. 64 bit process: this function gets both 32 and 64 bit products.
#>
function Get-Uninstall
{
    # paths: x86 and x64 registry keys are different
    if ([IntPtr]::Size -eq 4) {
        $path = 'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*'
    }
    else {
        $path = @(
            'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*'
            'HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*'
        )
    }

    # get all data
    Get-ItemProperty $path |
    # use only with name and unistall information
    .{process{ if ($_.DisplayName -and $_.UninstallString) { $_ } }} |
    # select more or less common subset of properties
    Select-Object DisplayName, Publisher, InstallDate, DisplayVersion, HelpLink, UninstallString |
    # and finally sort by name
    Sort-Object DisplayName
}

Get-Uninstall
4 голосов
/ 21 января 2011

Сканируйте ваш скрипт:

  • HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
set-location HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall
Get-ChildItem | foreach-object { $_.GetValue("DisplayName") }
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...