Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Server unavailable fixup (See related posts)

REM This batch file addresses "Server unavailable" error
@echo off 

REM "Changing to the Framework install directory"
cd /d C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322

echo "Stopping IIS"
iisreset /stop 
echo "----------------------"

echo "Stopping the ASP.NET state service if it is running"
net stop aspnet_state
echo "----------------------"

echo "Re-registering ASP.NET"
aspnet_regiis -i 
echo "----------------------"

echo "Restarting IIS"
iisreset /start 
echo "----------------------"

You need to create an account or log in to post comments to this site.


Click here to browse all 4858 code snippets

Related Posts