Launching Installer Via Powershell and WinRM and Nothing Happens
- by Nick DeMayo
I'm currently working on a Powershell script to run some Microsoft Hotfix installers remotely on several Windows Server 2008 R2 servers that I manage. Basically, the script copies all the appropriate files up to the server, and then runs the installer via Invoke-Command, like so:
function InstallCU {
Write-Host "Installing June 2013 CU..."
…