vote up 1 vote down star

How can I add the reboot action to a vdproj? I need an MSI which restart the pc at the end of the installation. Thank you.

flag

50% accept rate

2 Answers

vote up 1 vote down

Just add the "REBOOT" property with the value "Force" which will prompt the user to reboot once setup is complete, or automatically reboot if there is no user interface.

If you cannot do this in the vdjproj then just use Orca to edit the Property table of the MSI once the setup is built.

If you want to force a reboot, you can set REBOOT=Force and REBOOTPROMPT=Suppress so that the user is not prompted.

Alternatively you can use the ForceReboot action to reboot during the middle of installation or ScheduleReboot to schedule a reboot once the installation is complete. Again either of these actions can be added using Orca if you cannot do so in the vdjproj.

You can do something like this using the following VBS

Dim installer, database, view, result
Set installer = CreateObject("WindowsInstaller.Installer")
Set database = installer.OpenDatabase ("setup.msi", 1)
Set view = database.OpenView ("INSERT INTO Property (Property, Value) VALUES ('REBOOT', 'Force')")
view.Execute
database.Commit
Set database = nothing
link|flag
Thank you. How can I add the ForceReboot action to the vdproj by means of Visual Studio 2008? What is Orca? – uvts_cvs Dec 5 '08 at 8:28
Orca is one of the tools that comes with the Windows Installer SDK. I'm not familar with Visual Studio (I just deal with MSI, I don't code) so I can't help you there sorry. – sascha Jan 16 '09 at 2:47
Is there a simple way to add a property automatically in a Visual Studio post build event ? (so I need a command line) – Julien N Jul 22 at 15:09
vote up 0 vote down

If you need to reboot, Windows Installer should detect it automatically. If you want to reboot as you are too lazy to start services manually, you will need to find some other way (I do not know of any easy way).

link|flag
In my case Windows Installer does not detect it automatically. – uvts_cvs Dec 4 '08 at 10:48

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.