我正在尝试在远程服务器上安装我们 Wsus 中批准的更新:
$session=New-PSSession -ComputerName server1
Invoke-Command -Session $session -ScriptBlock {
(Import-module -name "S:\temp\PSWindowsUpdate" -Verbose),
(Get-WindowsUpdate | Format-Table -Verbose)
Enable-WURemoting
(Install-module pswindowsupdate -force -Accept -SkipPublisherCheck -AllowClobber),
(Get-WUInstall -AcceptAll -AutoReboot -Verbose)}
但是我收到此访问被拒绝错误:
访问被拒绝。(来自 HRESULT 的异常:0x80070005 (E_ACCESSDENIED))+ CategoryInfo:NotSpecified:(:) [Get-WindowsUpdate],UnauthorizedAccessException + FullyQualifiedErrorId:System.UnauthorizedAccessException,PSWindowsUpdate.GetWindowsUpdate + PSComputerName:server1
我是远程服务器的管理员。
无法在远程服务器上启动更新安装?
谢谢,