Pcyber 0 Posted April 4 Share Posted April 4 Hi, I'm trying to install service pack for Windows from PS. For example I created a task: powershell -command "& {(New-Object System.Net.WebClient).DownloadFile('hxxp://download.windowsupdate.com/msdownload/update/software/svpk/2011/02/windows6.1-kb976932-x86_c3516bc5c9e69fee6d9ac4f981f5b95977a8a2fa.exe', '%temp%\windows6.1-kb976932-x86_c3516bc5c9e69fee6d9ac4f981f5b95977a8a2fa.exe');(Start-process -ArgumentList '%temp%\windows6.1-kb976932-x86_c3516bc5c9e69fee6d9ac4f981f5b95977a8a2fa.exe -NoNewWindow')}" >c:\SP1.log It's Downloaded it, but SP1.log is empty and SP1 not installed. Any idea? Thanks Quote Link to comment Share on other sites More sharing options...
itman 1,359 Posted April 4 Share Posted April 4 27 minutes ago, Pcyber said: Hi, I'm trying to install service pack for Windows from PS. Check your Windows PowerShell Event log for entries related to non-execution. If you have AppLocker configured on the device running the script, it will by default block use of any PowerShell sub-assemblies executed this way. Ditto if a policy was configured to block execution of scripts. Quote Link to comment Share on other sites More sharing options...
Administrators Marcos 4,187 Posted April 4 Administrators Share Posted April 4 Does it install when executed via "psexec -s windows6.1-kb976932-x86_c3516bc5c9e69fee6d9ac4f981f5b95977a8a2fa.exe" ? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.