获取远程计算机安装的软件列表

Get list of installed software of remote computer

是否可以获取远程计算机的已安装软件列表? 我知道使用 Powershell 为本地计算机执行此操作。是否可以使用 Powershell 获取远程计算机的安装软件并将此列表保存在远程计算机上? 我将其用于本地计算机: 获取 WmiObject -Class Win32_Product | Select-对象-属性名称

提前致谢, 最好的问候,

这使用 Microsoft。Win32.RegistryKey 检查远程计算机上的 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall 注册表项。

https://github.com/gangstanthony/PowerShell/blob/master/Get-InstalledApps.ps1

*编辑:粘贴代码以供参考

function Get-InstalledApps {
    param (
        [Parameter(ValueFromPipeline=$true)]
        [string[]]$ComputerName = $env:COMPUTERNAME,
        [string]$NameRegex = ''
    )
    
    foreach ($comp in $ComputerName) {
        $keys = '','\Wow6432Node'
        foreach ($key in $keys) {
            try {
                $reg = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey('LocalMachine', $comp)
                $apps = $reg.OpenSubKey("SOFTWARE$key\Microsoft\Windows\CurrentVersion\Uninstall").GetSubKeyNames()
            } catch {
                continue
            }

            foreach ($app in $apps) {
                $program = $reg.OpenSubKey("SOFTWARE$key\Microsoft\Windows\CurrentVersion\Uninstall$app")
                $name = $program.GetValue('DisplayName')
                if ($name -and $name -match $NameRegex) {
                    [pscustomobject]@{
                        ComputerName = $comp
                        DisplayName = $name
                        DisplayVersion = $program.GetValue('DisplayVersion')
                        Publisher = $program.GetValue('Publisher')
                        InstallDate = $program.GetValue('InstallDate')
                        UninstallString = $program.GetValue('UninstallString')
                        Bits = $(if ($key -eq '\Wow6432Node') {'64'} else {'32'})
                        Path = $program.name
                    }
                }
            }
        }
    }
}

有多种方法可以获取远程计算机上已安装软件的列表:

  1. 运行正在 ROOT\CIMV2 命名空间上进行 WMI 查询:

    • 启动 WMI 资源管理器或任何其他可以 运行 WMI 查询的工具。
    • 运行 WMI 查询 "SELECT * FROM Win32_Product"
  2. 使用 wmic 命令行界面:

    • 按 WIN+R
    • 键入 "wmic",按 Enter
    • 在 wmic 命令提示符中键入“/node:RemoteComputerName product”
  3. 使用 Powershell 脚本:

    • 通过 WMI 对象:Get-WmiObject -Class Win32_Product -Computer RemoteComputerName
    • 通过注册表:Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall* | Select-对象显示名称、显示版本、发布者、安装日期 |格式-Table –AutoSize
    • 通过 Get-RemoteProgram cmdlet:Get-RemoteProgram -ComputerName RemoteComputerName

来源:https://www.action1.com/kb/list_of_installed_software_on_remote_computer.html