我想通過PowerShell安裝某些Windows更新,因爲我需要修補的計算機數量。通過Powershell推送Windows更新
我使用以下語法;
enter-pssession PCname-PC
一旦會話連接,我使用以下;
wusa.exe c:\temp\update.msu /quiet /norestart /log:C:\wusa.log
手頭的問題是沒有任何反應,我每次都收到拒絕訪問。 Powershell作爲管理員運行,本地計算機用戶是管理員。我曾嘗試運行一個腳本,允許會話以域管理員身份進行連接,並獲得相同的結果。
任何幫助在這個問題將不勝感激。謝謝
或者你可以試試這個:$ PC =「PC 「[wmiclass]」\\ $ pc \ root \ cimv2「$ comm =」cmd/c wusa.exe c:\ temp \ update.msu/quiet/norestart /log:C:\wusa.log「 :Win32_Process「)。create($ comm)' – Vitaly
或者你可以嘗試使用credentional參數:'Enter-PSSession -ComputerName PC1 -Credential contoso \ administrator' – Vitaly
S Windows版本阻止您寫入C:\驅動器的根目錄。嘗試更改/登錄到另一個目錄。 –