Windows Update删除

时间:2014-05-06 18:40:22

标签: powershell powershell-v2.0 powershell-v3.0 powershell-ise

我正在尝试编写一个脚本来搜索我们的计算机以查找某些Windows更新,如果找到更新,则会卸载计算机上的更新。目前它没有重新启动。我正在使用我知道安装的VM进行更新以进行测试。它很安静,但不会重启。知道我做错了什么或者我应该改变什么?

if ((
gwmi -cl win32_reliabilityRecords `
-filter "sourcename = 'Microsoft-Windows-WindowsUpdateClient'" | `
where { $_.message -match 'KB2912208' } | `
select -expand message)) `
{
'wusa.exe /uninstall /kb:2912208 /quiet /forcerestart'
}

0 个答案:

没有答案