How to download files from CLI in Windows [closed]
up vote
0
down vote
favorite
I didn't have enough reps to answer this question, so posting here:
How to download files from command line in Windows like wget or curl
Original at:
How to download files from command line in Windows like wget or curl
- My answer:
There IS a Wget version for Windows.
To answer your question, to download a file from the web on CMD without the browser opening the associated app like Quicktime to the file can be saved instead, I type the URL after the 'start' command:
start https://url/001.ts
This should download the file. Some browsers are set to open downloaded file instead of just saving it. This can be changed in settings.
eg. http://www.planetpublish.com/wp-content/uploads/2011/11/The_Jungle_Book_T.pdf
will most likely open the book in the browser instead of just saving it to local drive. To stop this, the browser settings are to be changed.
To disable Chrome's PDF viewer:
Open Chrome and type "about:plugins" into the omnibox at the top.
Find Chrome PDF Viewer in the list and click the Disable link to prevent PDFs from loading within Chrome.
The above is to get web resources without downloading extra software (just with what's ordinarily shipped with the computer); in this case, CMD & IE.
Newer computers have Powershell, which can bypass IE.
On older computers, you may still get web resources using telnet to bypass IE eg.telnet google.com 80
GET / HTTP/1.1
Worst case scenario would be to write your own program to download web resources.
Windows scripting would also help, to speed up batch/unattended processing.
As a last resort, you could download external software to do the job, but test it out in a sandbox first (if your reason for not using external software is malware/virus).
command-line download resources
closed as off-topic by Mokubai♦ Nov 21 at 10:44
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This question is not about computer hardware or software, within the scope defined in the help center." – Mokubai
If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
up vote
0
down vote
favorite
I didn't have enough reps to answer this question, so posting here:
How to download files from command line in Windows like wget or curl
Original at:
How to download files from command line in Windows like wget or curl
- My answer:
There IS a Wget version for Windows.
To answer your question, to download a file from the web on CMD without the browser opening the associated app like Quicktime to the file can be saved instead, I type the URL after the 'start' command:
start https://url/001.ts
This should download the file. Some browsers are set to open downloaded file instead of just saving it. This can be changed in settings.
eg. http://www.planetpublish.com/wp-content/uploads/2011/11/The_Jungle_Book_T.pdf
will most likely open the book in the browser instead of just saving it to local drive. To stop this, the browser settings are to be changed.
To disable Chrome's PDF viewer:
Open Chrome and type "about:plugins" into the omnibox at the top.
Find Chrome PDF Viewer in the list and click the Disable link to prevent PDFs from loading within Chrome.
The above is to get web resources without downloading extra software (just with what's ordinarily shipped with the computer); in this case, CMD & IE.
Newer computers have Powershell, which can bypass IE.
On older computers, you may still get web resources using telnet to bypass IE eg.telnet google.com 80
GET / HTTP/1.1
Worst case scenario would be to write your own program to download web resources.
Windows scripting would also help, to speed up batch/unattended processing.
As a last resort, you could download external software to do the job, but test it out in a sandbox first (if your reason for not using external software is malware/virus).
command-line download resources
closed as off-topic by Mokubai♦ Nov 21 at 10:44
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This question is not about computer hardware or software, within the scope defined in the help center." – Mokubai
If this question can be reworded to fit the rules in the help center, please edit the question.
Possible duplicate of How to download files from command line in Windows like wget or curl
– bummi
Nov 21 at 9:04
yeah, read the 1st line of the post.
– zimba
Nov 21 at 9:12
You should have enough rep now. You should post this response as an answer to the original question and then delete this.
– Anaksunaman
Nov 21 at 9:24
How is it "off-topic"? It IS about computer software!
– zimba
14 hours ago
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I didn't have enough reps to answer this question, so posting here:
How to download files from command line in Windows like wget or curl
Original at:
How to download files from command line in Windows like wget or curl
- My answer:
There IS a Wget version for Windows.
To answer your question, to download a file from the web on CMD without the browser opening the associated app like Quicktime to the file can be saved instead, I type the URL after the 'start' command:
start https://url/001.ts
This should download the file. Some browsers are set to open downloaded file instead of just saving it. This can be changed in settings.
eg. http://www.planetpublish.com/wp-content/uploads/2011/11/The_Jungle_Book_T.pdf
will most likely open the book in the browser instead of just saving it to local drive. To stop this, the browser settings are to be changed.
To disable Chrome's PDF viewer:
Open Chrome and type "about:plugins" into the omnibox at the top.
Find Chrome PDF Viewer in the list and click the Disable link to prevent PDFs from loading within Chrome.
The above is to get web resources without downloading extra software (just with what's ordinarily shipped with the computer); in this case, CMD & IE.
Newer computers have Powershell, which can bypass IE.
On older computers, you may still get web resources using telnet to bypass IE eg.telnet google.com 80
GET / HTTP/1.1
Worst case scenario would be to write your own program to download web resources.
Windows scripting would also help, to speed up batch/unattended processing.
As a last resort, you could download external software to do the job, but test it out in a sandbox first (if your reason for not using external software is malware/virus).
command-line download resources
I didn't have enough reps to answer this question, so posting here:
How to download files from command line in Windows like wget or curl
Original at:
How to download files from command line in Windows like wget or curl
- My answer:
There IS a Wget version for Windows.
To answer your question, to download a file from the web on CMD without the browser opening the associated app like Quicktime to the file can be saved instead, I type the URL after the 'start' command:
start https://url/001.ts
This should download the file. Some browsers are set to open downloaded file instead of just saving it. This can be changed in settings.
eg. http://www.planetpublish.com/wp-content/uploads/2011/11/The_Jungle_Book_T.pdf
will most likely open the book in the browser instead of just saving it to local drive. To stop this, the browser settings are to be changed.
To disable Chrome's PDF viewer:
Open Chrome and type "about:plugins" into the omnibox at the top.
Find Chrome PDF Viewer in the list and click the Disable link to prevent PDFs from loading within Chrome.
The above is to get web resources without downloading extra software (just with what's ordinarily shipped with the computer); in this case, CMD & IE.
Newer computers have Powershell, which can bypass IE.
On older computers, you may still get web resources using telnet to bypass IE eg.telnet google.com 80
GET / HTTP/1.1
Worst case scenario would be to write your own program to download web resources.
Windows scripting would also help, to speed up batch/unattended processing.
As a last resort, you could download external software to do the job, but test it out in a sandbox first (if your reason for not using external software is malware/virus).
command-line download resources
command-line download resources
asked Nov 21 at 9:00
zimba
91
91
closed as off-topic by Mokubai♦ Nov 21 at 10:44
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This question is not about computer hardware or software, within the scope defined in the help center." – Mokubai
If this question can be reworded to fit the rules in the help center, please edit the question.
closed as off-topic by Mokubai♦ Nov 21 at 10:44
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "This question is not about computer hardware or software, within the scope defined in the help center." – Mokubai
If this question can be reworded to fit the rules in the help center, please edit the question.
Possible duplicate of How to download files from command line in Windows like wget or curl
– bummi
Nov 21 at 9:04
yeah, read the 1st line of the post.
– zimba
Nov 21 at 9:12
You should have enough rep now. You should post this response as an answer to the original question and then delete this.
– Anaksunaman
Nov 21 at 9:24
How is it "off-topic"? It IS about computer software!
– zimba
14 hours ago
add a comment |
Possible duplicate of How to download files from command line in Windows like wget or curl
– bummi
Nov 21 at 9:04
yeah, read the 1st line of the post.
– zimba
Nov 21 at 9:12
You should have enough rep now. You should post this response as an answer to the original question and then delete this.
– Anaksunaman
Nov 21 at 9:24
How is it "off-topic"? It IS about computer software!
– zimba
14 hours ago
Possible duplicate of How to download files from command line in Windows like wget or curl
– bummi
Nov 21 at 9:04
Possible duplicate of How to download files from command line in Windows like wget or curl
– bummi
Nov 21 at 9:04
yeah, read the 1st line of the post.
– zimba
Nov 21 at 9:12
yeah, read the 1st line of the post.
– zimba
Nov 21 at 9:12
You should have enough rep now. You should post this response as an answer to the original question and then delete this.
– Anaksunaman
Nov 21 at 9:24
You should have enough rep now. You should post this response as an answer to the original question and then delete this.
– Anaksunaman
Nov 21 at 9:24
How is it "off-topic"? It IS about computer software!
– zimba
14 hours ago
How is it "off-topic"? It IS about computer software!
– zimba
14 hours ago
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Possible duplicate of How to download files from command line in Windows like wget or curl
– bummi
Nov 21 at 9:04
yeah, read the 1st line of the post.
– zimba
Nov 21 at 9:12
You should have enough rep now. You should post this response as an answer to the original question and then delete this.
– Anaksunaman
Nov 21 at 9:24
How is it "off-topic"? It IS about computer software!
– zimba
14 hours ago