How to start stop Website IIS Command Way

Open Command Prompt Set the path of appcmd to path SET PATH=%PATH%;%systemroot%\system32\inetsrv\ List Sites:appcmd list site To Restart:appcmd start site :{sitename}orappcmd stop site :{sitename} Through Power Shell PS C:\Users\Administrator> Import-Module WebAdministrationPS C:\Users\Administrator> Stop-WebSite example.comPS C:\Users\Administrator> Start-WebSite example.com Hope this helps.…

you're currently offline