Here's a simple PowerShell script to query any web site. Just change the URL below to your own site.
$client = New-Object System.Net.WebClient $html = $client.DownloadString("http://www.myurl.com/")
Powered by Revindex Wiki