Windows でWeb のファイルを直接指定してコマンドラインでダウンロードできるツール

bitsadmin

set FILENAME=20231101.zip
set FILENAME2=C:\data\%FILENAME%
if not exist %FILENAME2% (
bitsadmin /transfer "test" http://test.com/%FILENAME% "%FILENAME2%"
)

wget

Linux のツールですが Windows 版をダウンロードして使えます

wget -O [ファイル名] [URL]

curl

Linux のツールですが Windows 版をダウンロードして使えます

curl -u username:password -O http://test.com/file.txt

aria2 

aria2

並列処理で高速にダウンロードできます

$ aria2c  http://test.com/file.txt

bat,windows

Posted by eightban