How do you open a .msu file?

1

How does one open an ".msu" file? I'm trying to install PowerShell 2.0 on Windows XP SP3. I read that you can use something called wusa.exe or a packet manager program?

Wormhole Xd

Posted 2013-08-06T01:14:50.657

Reputation: 11

http://support.microsoft.com/kb/934307 ? – Keith Thompson – 2013-08-06T01:16:36.280

@Keith Thompson That link explains nothing... – Wormhole Xd – 2013-08-06T01:19:39.990

From the linked page: "You can also double-click the .msu file to install the update package." Did you try that? – Keith Thompson – 2013-08-06T02:22:43.913

1

Please include the things you tried and how they failed. @KeithThompson's link is exactly what you are asking for. If the information there does not help, mention that you have read it and explain what happens when you try to follow MS's instructions. You might want to read here for tips on how to ask good questions on this and all sites on the Stack Exchange network.

– terdon – 2013-08-06T02:55:55.193

Answers

5

You can't use MSU files on Windows XP. This is the new Update format for Vista+.

You must use the WindowsXP-KB968930-x86-ENG.exe from here:

Update for Windows XP (KB968930)

http://www.microsoft.com/en-us/download/details.aspx?id=16818

This package includes the following components: Windows PowerShell 2.0 and Windows Remote Management (WinRM) 2.0. After you install this item, you may have to restart your computer.

magicandre1981

Posted 2013-08-06T01:14:50.657

Reputation: 86 560

This should be marked as solution. – Greg0ry – 2014-12-03T12:57:36.223

1

Try the following command to open the MSU file:

expand -f:* "file.msu" %temp%\ExtractFolder

Jack

Posted 2013-08-06T01:14:50.657

Reputation: 1 083

wusa.exe is the program that will install these. Typically you can double click on the .msu and wusa.exe will take over from there, otherwise try something like c:\windows\system32\wusa.exe {path-to-msu-file} from a command prompt. – LawrenceC – 2013-08-06T03:17:08.660

Of course. My answer was more related to the first part of the original question "how to open," rather than "how to install." – Jack – 2013-08-06T12:17:52.470