当我通过
Windows Server 2012 R2 Core机器上的远程桌面登录时,我可以通过运行sconfig.cmd来触发Windows更新.然而,当它在PS远程会话中被调用时,这会失败:
Enter-PSSession -ComputerName server2
这就是sconfig抱怨的内容.它基本上说它无法找到特定的注册表值.一个有趣的事情是微软选择VBScript而不是PowerShell来编程这个CLI界面……
[server2]: PS C:\> sconfig C:\>echo off sconfig : FEHLER: Der angegebene Registrierungsschl?ssel bzw. Wert wurde nicht gefunden. + CategoryInfo : NotSpecified: (FEHLER: Der ang...nicht gefunden.:String) [],RemoteException + FullyQualifiedErrorId : NativeCommandError Microsoft (R) Windows Script Host,Version 5.8 Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten. System wird ?berpr?ft... [...] 14) Server herunterfahren 15) Zur Befehlszeile wechseln C:\Windows\System32\de-DE\sconfig.vbs(326,1) Laufzeitfehler in Microsoft VBScript: Eingabe hinter Dateiende.
通过PS远程会话登录时应该如何/可以启动Windows Update?
你实际上不能直接触发winrm / winrs.
原文链接:https://www.f2er.com/windows/370338.html存在用于执行Powershell的Windows更新的popular powershell module,并且为了在远程系统上执行更新,它实际上将模块复制到远程系统并在远程系统上安排新的一次性任务.
在invoke-WUInstall.ps1文件中,它有关于远程触发更新的注释.
Use Invoke-WUInstall to invoke Windows Update install remotly. It Based on TaskScheduler because CreateUpdateDownloader() and CreateUpdateInstaller() methods can’t be called from a remote computer – E_ACCESSDENIED.