我對Powershell完全陌生。在線查找腳本以更新Windows,並且想以管理員身份運行它。有從網絡共享啓動一個新的會話,並調用腳本的腳本:Powershell:以管理員身份運行腳本導致無限執行
PowerShell.exe -noprofile -command "&{Start-Process PowerShell -ArgumentList
'-noprofile -file \\path\to\networkshare\00_WindowsUpdate.ps1' -Verb RunAs}"
的問題是,它使運行該腳本和無限打開新的窗口。我搜索了互聯網,找不到任何特定於我的問題。如何運行我的腳本來調用Windows Update腳本一次,並防止它無限執行?
什麼00_WindowsUpdate.ps1'的'的內容? –
第1行:'導入模塊\ \路徑\ \ \ PSWindowsUpdate' 第2行:'Get-WUInstall -WindowsUpdate -IgnoreUserInput -AcceptAll -IgnoreReboot -Verbose | Out-File C:\ Windows \ Temp \ PSWindowsUpdate.log' – PatrykChristopher