How do I open an MSP file?
Need to open a msp file in Wise and modify it to suppress a dialog box asking for a reboot.
0 Comments
[ + ] Show comments
Answers (3)
Answer Summary:
MSIEXEC can use the /norestart function in conjunction with the /qn for a completely passive installation. Your final command line will look like this. msiexec /p"C:\Package.msp" /qn /norestart
MSIEXEC can use the /norestart function in conjunction with the /qn for a completely passive installation. Your final command line will look like this. msiexec /p"C:\Package.msp" /qn /norestart
Please log in to answer
Posted by:
piyushnasa
12 years ago
You can open an MSP file on top of MSI through ORCA. Open the MSI through ORCA and then drag drop the MSP over it. You will not be able to change anything, just view what the differences are.
Comments:
-
Does anyone know the steps to use the property MSIRESTARTCONTROL ? Apparently you can set it to disable along with a custom action to suppress the dialog. Any help is appreciated. Cheers - dmack 12 years ago
-
MSIEXEC can use the /norestart function in conjunction with the /qn for a completely passive installation. - Trinity 12 years ago
Posted by:
Coppr
12 years ago
Adding to that, have you tried putting REBOOT=ReallySuppress as a command line parameter when running msiexec /p??
Comments:
-
Yes I did have REBOOT=ReallySuppress in the command line but it still brought up the dialog. The only way it gets suppressed is with /qn but I need to have a passive install as well. - dmack 12 years ago