How to deploy a Microsoft .MSU patch file silently using the BMC Client management? |
This example deploys a .msu file from Microsoft using the Windows Update Standalone Installer. This same methodology can be used deploy other file types including MSI files using msiexec, or even using a properly fabricated batch file.
Run Command: C:\WINDOWS\SYSTEM32\wusa.exe c:\temp\Cust_MSU\Windows6.1-KB2819745-x64-MultiPkg.msu /quiet /norestart
msiexec /p “<msp file name with path>” /qn
|