如何使用PowerShell比较两台Windows服务器之间的已安装修补程序?

前端之家收集整理的这篇文章主要介绍了如何使用PowerShell比较两台Windows服务器之间的已安装修补程序?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要使用Power Shell比较开发和生产环境之间安装的补丁.我怎样才能做到这一点?
我最近写了一篇关于这个问题的博客,并提出了这个脚本.您可以将其作为两台计算机上的管理员用户运行,也可以使用get-hotfix命令上的-Credential选项.
$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
原文链接:https://www.f2er.com/windows/369669.html

猜你在找的Windows相关文章