Will running aspnet_regiis.exe -ir create any problems? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T21:40:47Z http://stackoverflow.com/feeds/question/1006103 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1006103/will-running-aspnetregiis-exe-ir-create-any-problems 0 Will running aspnet_regiis.exe -ir create any problems? alexander-strandberg 2009-06-17T09:55:54Z 2009-06-18T20:42:25Z <p>Hi there. I've asked a question about changing the version of .Net sites in the IIS. If it affects classic asp sites etc (See <a href="http://stackoverflow.com/questions/847406/does-asp-net-setting-affect-classic-asp-iis-6-settings">Does asp.net setting affect classic asp (IIS 6 settings)</a>) And that seems fine. So my follow-up question is, will running this command get me fired? What it does is changing the default value (and all existing?) of the .net version to 2.0. </p> <p>This wont affect any of the .net sites since they're allready versioned to 2.0. The classic asp pages needs to get its app pools updated so its functionoal with 2.0 but may I run into any other troubles? </p> <p>I've tried doing this on a test environment and no sites whet down during the installation period (from the command) but I did not have any classic asp sites or any .net sites running though (which I should test, come to think about it) but may something else break?</p> <p>Is this command doing anything else? We have some very large sites running and we cannot have downtime periods so I need to be 100% sure that this command is safe. Since all sites go down everytime we change a new sites .net version number we need to get this fix live asap.</p> <p>Any good ideas?</p> http://stackoverflow.com/questions/1006103/will-running-aspnetregiis-exe-ir-create-any-problems/1006125#1006125 0 Answer by Dror for Will running aspnet_regiis.exe -ir create any problems? Dror 2009-06-17T10:05:01Z 2009-06-18T20:42:25Z <p>This should not cause any side affect as it relates to what the IIS does with .NET pages (e.g. aspx extensions).<br /> Since the classic asp pages are not handled by the .NET extensions in the IIS I can see no reason to worry.<br /> <strong>EDIT:</strong><br /> According to <a href="http://msdn.microsoft.com/en-us/library/k6h9cz8h%28VS.80%29.aspx" rel="nofollow">MSDN</a> you can use an option </p> <blockquote> <p>-norestart - inhibits the restart of the World Wide Web Publishing Service after installing or updating ASP.NET script maps. If you do not use this option, all application pools are recycled.</p> </blockquote> <p>so you can see from that application pools <strong>will</strong> be recycled. </p>