Skip to content

Instantly share code, notes, and snippets.

@varhub
Created November 29, 2016 19:54
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save varhub/656943d25bb1e1f4ebc60a8aa898a052 to your computer and use it in GitHub Desktop.
Save varhub/656943d25bb1e1f4ebc60a8aa898a052 to your computer and use it in GitHub Desktop.
Windows - Install msu file

Install msu file (Windows Update Package)

Inside a msu file (a file with the extension msu) there can be Windows updates (security updates, critical updates, updates, update rollups or hotfixes) or downloadable setup packages. msu stands for Microsoft Update Standalone Package.

To install an .msu update package, you can either double click it, or run Wusa.exe together with the full path of the file:

  wusa.exe <pathtofile>\<filename.msu>

You can also double-click the .msu file to install the update package.

If you want to see the content of the msu file use the expand command:

  expand -f:* “<filename.msu> %TEMP%

The content of the msu file is now in your temp folder.

To uninstall an update package:

  wusa.exe /uninstall <pathtofile>\<filename.msu>

Or:

  wusa.exe /uninstall /kb:3010081
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment