I have a production IIS server that hosts a number of web apps, most of them relatively simple. The .NET framework version 4.5 has been installed on the server, but IIS has not yet been configured to use it. I want to use 4.5 on a new application. This Stackoverflow post describes how to update the server using the command aspnet_regiis -i
.
Microsoft says that this command ...
Installs the version of ASP.NET that is associated with Aspnet_regiis.exe and updates the script maps at the IIS metabase root and below. Only the script maps for applications that use an earlier version of ASP.NET are updated. Applications that use a later version are not affected.
I guess I don't completely understand the implications. I'm not certain, but I think updating the "script maps" means all existing (older) applications will run ASP.NET 4.5. Am I likely to break any existing applications if I run this command?