cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
ALCarn
Level 2

Force reboot after prerequiste?

I'm trying to install the MSSQL 2008 application which requires the .NET Framework 3.5 be installed first followed by a reboot. The .NET Framework installs properly but a reboot does not take place. Is there anyway to force a reboot to take place after installing this prerequiste?

Thanks,

Al
Labels (1)
0 Kudos
(3) Replies
rd22684
Level 2

Use following code patch after installation.

System(SYS_BOOTMACHINE);
exit;


Thanks,
RD
0 Kudos
Roman1
Level 9

Hi,

change the 3.5 prereq. command line from

/p dotnetfx35.exe /l 1033 /v "/q /norestart"

to
/p dotnetfx35.exe /l 1033 /v "/q /forcerestart"
0 Kudos
kenzo22
Level 6

Hi Roman, I have a similar .Net4 Framework SetupPrerequisite, and I follow you suggestion to change "norestart" to "forcerestart", but it seems doesn't take effect, the installer proceeds after the installtion of .Net4 Framework without notifying users to restart, why is that?
0 Kudos