我需要使用Power
Shell比较开发和生产环境之间安装的补丁.我怎样才能做到这一点?
我最近写了一篇关于这个问题的博客,并提出了这个脚本.您可以将其作为两台计算机上的管理员用户运行,也可以使用get-hotfix命令上的-Credential选项.
原文链接:https://www.f2er.com/windows/369669.html$server1 = Read-Host "Server 1" $server2 = Read-Host "Server 2" $server1Patches = get-hotfix -computer $server1 | Where-Object {$_.HotFixID -ne "File 1"} $server2Patches = get-hotfix -computer $server2 | Where-Object {$_.HotFixID -ne "File 1"} Compare-Object ($server1Patches) ($server2Patches) -Property HotFixID