我有这个功能我使用foreach语句块来运行许多机器:
function Get-InstalledApps ($appStr) {
$appWC = "*$appStr*"
if ([IntPtr]::Size -eq 4) {
$regpath = 'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*'
}
else {
$regpath = @(
'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*'
'HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*'
)
}
$getapps = Get-ItemProperty $regpath | .{process{if($_.DisplayName -and $_.UninstallString) { $_ } }}
Foreach ($app in $getapps | where {$_.DisplayName -like $appWC}) {
[pscustomobject]@{Computer = ($env:COMPUTERNAME + "." + $env:USERDNSDOMAIN)
AppName = ($app.displayname)
Publisher = ($app.Publisher)
DisplayVersion = ($app.DisplayVersion)
InstallDate = ($app.InstallDate)
UninstallString = ($App.UninstallString)}
}
}
在本地,它看起来像这样:
PS C:\windows\system32> Get-InstalledApps ibm | ft
Computer AppName Publisher DisplayVersion InstallDate UninstallString
-------- ------- --------- -------------- ----------- ---------------
Computer.domain.COM IBM Tivoli Storage Manager Client IBM 06.04.0001 20140807 MsiExec.exe /I{FF99015E-71B4-41AB-8985-67D99383A72A}
但是在某些计算机上远程运行时
(即:)
Invoke-Command -ComputerName $ computer -ScriptBlock $ {function:Get-InstalledApps} -ArgumentList $ appStr
我得到了上述内容,但是对其他人我得到了这个:
Name Value
---- -----
UninstallString MsiExec.exe /I{68C09095-AC00-4541-B46B-0835F2BDB0CE}
Computer comp1.domain.com
Publisher IBM
InstallDate 20150122
DisplayVersion 07.01.0000
AppName IBM Tivoli Storage Manager Client
UninstallString MsiExec.exe /X{1316AC9A-7A5D-4866-B41F-4B3CF03CE52A}
Computer comp2.domain.com
Publisher IBM Corp.
InstallDate 20170226
DisplayVersion 9.2.7.53
AppName IBM BigFix Client
如果没有机会验证某些计算机的PowerShell版本,我猜测第二组结果可能是针对运行的计算机运行的结果<版本3.0。
是否可以强制输出在所有计算机上显示为表格(第一个示例输出)?
答案 0 :(得分:2)
我猜测第二组结果可能是针对运行的计算机运行的结果<版本3.0。
如果您在不是至少版本3的系统上运行该版本,那么您的[pscustomobject]
强制转换将失败,因为它是在v3中引入的。我本来希望只是触发一个错误,但它似乎返回哈希表。兼容的解决方案是使用new-object
代替。
New-Object -TypeName PSCustomObject -Property @{
Computer = ($env:COMPUTERNAME + "." + $env:USERDNSDOMAIN)
AppName = ($app.displayname)
Publisher = ($app.Publisher)
DisplayVersion = ($app.DisplayVersion)
InstallDate = ($app.InstallDate)
UninstallString = ($App.UninstallString)
}
答案 1 :(得分:0)
谢谢马特。
这很有效,这是我首选的方法。
如果没有安装应用程序或主机处于离线状态,那么IF语句的几种变体似乎并没有在脚本中的另一点获取输出(仅在安装时显示)并返回为空行,但这似乎是由语句块拾取:
split()
}