I've done several Google searches and can't find a good sample to stop/start the 'Default Web Site' (in II6) using Powershell.
This...
$server = "localhost"
$siteName = "default web site"
$iis = [ADSI]"IIS://$server/W3SVC"
$site = $iis.psbase.children | where { $_.keyType -eq "IIsWebServer"
-AND $_.ServerComment -eq $siteName }
from here got me started, but I can't get the 'start'/'stop' syntax right.