Network wake on lan packet http://www.adminarsenal.com/admin-arsenal-blog/powershell-sending-a-wake-on-lan-wol-magic-packet/
$req = [System.Net.WebRequest]::Create('http://www.devdungeon.com') $req.Method ="GET" $req.ContentLength = 0 $resp = $req.GetResponse() $reader = new-object System.IO.StreamReader($resp.GetResponseStream()) $reader.ReadToEnd()
$url = "http://www.devdungeon.com" $output = "test.html" $start_time = Get-Date
Invoke-WebRequest -Uri $url -OutFile