gpt4 book ai didi

windows - 如何将 Windows 更新设置为从不使用 PowerShell 检查更新?

转载 作者:可可西里 更新时间:2023-11-01 12:46:19 25 4
gpt4 key购买 nike

我正在寻找使用 PowerShell、Windows Server 2008 R2 编写脚本的帮助,因此 Windows 更新设置为“从不检查更新”。我找到了一些接近的答案,但我仍然不能做我想做的事。目前,我必须通过单击 Windows Update > 更改设置 > 从不检查更新来设置它。提前致谢。

最佳答案

您可以为此使用 COM 对象:

$WUSettings = (New-Object -com "Microsoft.Update.AutoUpdate").Settings
$WUSettings
NotificationLevel : 2
ReadOnly : True
Required : False
ScheduledInstallationDay : 0
ScheduledInstallationTime : 3
IncludeRecommendedUpdates : True
NonAdministratorsElevated : True
FeaturedUpdatesEnabled : True

与:

NotificationLevel  :
0 = Not configured;
1 = Disabled;
2 = Notify before download;
3 = Notify before installation;
4 = Scheduled installation;

你可以测试:

$WUSettings = (New-Object -com "Microsoft.Update.AutoUpdate").Settings
$WUSettings.NotificationLevel=1
$WUSettings.save()

(已编辑)

您必须使用以管理员身份在提升模式下运行的 PowerShell session 。

关于windows - 如何将 Windows 更新设置为从不使用 PowerShell 检查更新?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9612609/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com