user2335320
user2335320

Reputation: 31

Batch file to download data from url

The website link is http://www.nrldc.in/WBS/DrwlSch.aspx?dt=%DATE%&st=DELHI . required a batch code to download the data from the URrl .

OR how can I download the data from URL through Batch file

Anyone please help

Tom

Upvotes: 3

Views: 1726

Answers (2)

npocmaka
npocmaka

Reputation: 57262

How can I download a file with batch file without using any external tools?

My attempt to resume ways of how file can be downloaded on windows.

Upvotes: 0

Dustin Harris
Dustin Harris

Reputation: 53

to do this you must use an external msdos application such as curl or wget! and example would be: "%myfiles%\wget.exe" --no-check-certificate -O "game\Update.zip" http://dl.dropbox.com/s/0kafa8pmnz6wivn/Update.zip you can get wget from: http://www.gnu.org/software/wget/

Upvotes: 1

Related Questions