Sunday, December 6, 2009

restart the IIS server from Bat File

@echo off
REM - File: iisrestart.bat
REM - Description: Restart's IIS (Web)
REM - Author: Thusith de silva from HBS
REM - ADD REM comments if you don't want to restart any
REM - of Services
echo Restarting IIS...
echo ======================================================
net stop "World Wide Web Publishing Service"
net start "World Wide Web Publishing Service"
echo ======================================================
echo IIS Restarted


No comments:

Post a Comment