How can I extract msp file from .exe?
hi how i can extract msp file from .exe?
0 Comments
[ - ] Hide Comments
Community Chosen Answer
Answers
Answer this question
or Comment on this question for clarity
Answers
-
Additionally, you can use command line and use the /extract or /admin to launch the program in Administrator install which allows you to extract the files instead of install to an alternative location.
Another solution that works well is to use the free Sysinternals Process Monitor (procmon) tool. Launch it and have it monitor the installer's process (e.g., setup.exe). Then launch the installer and leave it running. Process Monitor will watch as the executable extracts the MSI/MST/MSP file and tell you where it was extracted to. Then you browse to that location with Windows Explorer and grab the file from there by copying it to a safe location.
Please log in to comment
One can also alternatively go on the microsoft web page for updates, download the given update as a .exe file, and use the /extract switch
.
For instance, lets say you want to get the powerpoint2016-kb3178699.msp update from an powerpoint2016-kb3178699.exe update file. So you will open the command line and type.
C:\Users\Dracula\Desktop\powerpoint2016-kb3178699.exe /extract:"C:\Updates".
This produces a .msp file which you can put in your office "\updates" deployment folder (which is usually on the network).
Please log in to comment
Comments