Only tested with IIS 7 on Server 08 R2 Open ‘CMD’ and navigate to ‘C:WindowsMicrosoft.NETFramework<.NET version number> Type ‘aspnet_regiis.exe -ir’ If this is a fresh version of IIS (no other sites running on it) or you’re not worried about the hosted sites breaking with a framework change you can use -i instead of -ir. At…
Category: IIS
‘aspnet_regiis -i’ and IIS
It is very common for posters on newgroups to recommend that solution seekers run the “aspnet_regiis -i“ command to fix various problems and ASP.NET maladies. Unfortunately, the -i flag of the aspnet_regiis command does much more than is usually required to fix most problems. It is a sledge hammer when the pennyweight would be a…
Running 32-bit & 64-bit ASP.Net versions at the same time
In IIS6, this was a pain area. On a 64-bit Windows 2003 Server, you cannot run worker processes in both 32-bit mode and as well as 64 bit mode. Either only one of them was possible. This was possible by the below Metabase Key which would be applied to the W3SVC/AppPools node. W3SVC/AppPools/enable32BitAppOnWin64 : true | false…