On pourrait très bien ouvrir un navigateur avec comme paramètre l'URL à atteindre.

Également à lire How to download files from command line in Windows, like Wget is doing?

On peut utiliser PowerShell :

C:\Users\i5>powershell
Windows PowerShell
Copyright (C) 2009 Microsoft Corporation. Tous droits réservés.
PS C:\Users\i5> $client = new-object System.Net.WebClient
PS C:\Users\i5> $client.DownloadFile("http://www.placeoweb.com/", "C:\\file.txt")
PS C:\Users\i5> exit
C:\Users\i5>

donc juste la partie powershell :

$client = new-object System.Net.WebClient
$client.DownloadFile("http://www.placeoweb.com/", "C:\\file.txt")

Et donc vous obtiendrait le contenu du site (1er arg) dans le fichier (2eme arg)

ou en une seule ligne //yash plain powershell.exe -Command (new-object System.Net.WebClient).DownloadFile('http://www.placeoweb.com/', 'C:\\file.txt') ///

Voyez dans le Namespace: System.Net