Ti posto una soluzione tramite powershell. Qui trovi spiegato come scaricarla e cosa ti occorre

http://forum.html.it/forum/showthrea...9#post12469479

A questo punto con poche righe di codice risolvi.

codice:
$wc = New-Object System.Net.WebClient
$path = "C:\Documents and Settings\utente\Desktop\cartella_in_cui_salvare\"
gc "C:\Documents and Settings\utente\Desktop\elenco_url.txt" | % {
    $file = ([system.IO.Path]::getfilename($_))
    $wc.DownloadFile($_,($path+$file))
}