Tuesday, July 15, 2008

IIS startup after install for .Net 2.0

Find the latest version of .net (like v1.0.x or v1.1.x or v2.0.x) looking in: C:\Windows\Microsoft.Net\Framework\
Run this command: "net stop w3svc" to stop web services
Run "aspnet_regiis.exe -ua" to uninstall all instances of ASP.NET from IIS
Now run "aspnet_regiis.exe -i" to install ASP.NET into IIS
Finally restart web services with "net start w3svc"