121 - Patching - It Wasn't an Automox Issue


What I thought were Automox issues turned out to be our issues. We go over the good and the bad. We’re a few steps closer to a good patch management process.

PowerShell Scripts For Installing Software

The first script is for putty. This is installed using an msi file. The second one is a script for installing VirtualBox. In this case we’re using the exe installer.

exit (Start-Process -FilePath 'msiexec.exe' -ArgumentList ('/qn', '/i', '"putty-64bit-0.71-installer.msi"') -Wait -Passthru).ExitCode

exit (Start-Process VirtualBox-6.0.10-132072-Win.exe -ArgumentList ('--silent') -Wait -Passthru).ExitCode

LINKS

  1. Automox - The Automox website

Damien Hull