Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does .NET Framework 4.0 require restart?

Tags:

asp.net

Getting .NET 4.0 installed on our prod server, just a quick question, does installation of the framework require restart? I don't remember anymore! :)

like image 869
Wil Avatar asked Jul 12 '10 14:07

Wil


2 Answers

It depends.... It depends on how up to date the computer is, what else is installed. There are too many factors to actually know for certain. My experience is we have installed it on 7 machines both 32 and 64 bit running Server 2003 & 2007 some required a reboot and others did not.

like image 166
cgreeno Avatar answered Sep 21 '22 13:09

cgreeno


It can require a restart.

The .NET Framework setup will require a reboot when one of the files it needs to install is in use during installation. There are a handful of files that are shared by all versions of the .NET Framework, so if there is an earlier version of the .NET Framework installed on the system than the one that is currently being installed, and a managed application is running and holding one of the shared files in use, then a reboot could be required at the end of installation.

More details here.

like image 29
Martin Avatar answered Sep 19 '22 13:09

Martin