I need to download a file through http from the command line on a windows server 2008. I am looking for something like wget, but it must be a built-in tool.
Is there such a tool?
|
I need to download a file through http from the command line on a windows server 2008. I am looking for something like wget, but it must be a built-in tool. Is there such a tool? |
|||||
|
|
If you have PowerShell installed...
|
|||
|
|
you use curl also: http://curl.haxx.se/docs/manpage.html something like curl -O http://domain.com/file.gz should work |
|||
|
|