search
Categories
Sponsors
VirtualMetric Hyper-V Monitoring, Hyper-V Reporting
Archive
Blogroll

Badges
MCSE
Community

Cozumpark Bilisim Portali
Posted in Hosting & IIS7, Windows Powershell | No Comment | 5,364 views | 16/12/2010 22:29

Powershell function to remove IIS7 websites.

Function Remove-WebSite
{
Param ($Description)
 
	Remove-Item IIS:\Sites\$Description -Recurse
}

Description is the name of website in IIS7.