How to download a webpage with PowerShell

$a = new-object net.webclient;

$a.DownloadString("http://www.whattimeisit.com/")


Bam!