certutil -urlcache -split -f 遠程地址 本地保存的文件跑徑與文 件名
# 如里不寫本地文 件名與路徑名, 會自動跟遠程文 件名相同, 并保存到當前目 錄下
?
另一個是:
?
bitsadmin /rawreturn /transfer getfile http://download.sysinternals.com/files/PSTools.zip c:\p.zip
bitsadmin /rawreturn /transfer getpayload http://download.sysinternals.com/files/PSTools.zip c:\p.zip
bitsadmin /transfer myDownLoadJob /download /priority normal "http://download.sysinternals.com/files/PSTools.zip" "c:\p.zip"
?
?
如果是powershell, 聽說可以這樣:
powershell (new-object System.Net.WebClient).DownloadFile('http://down.360safe.com/360/inst.exe','d:\\test\\360.exe')
#如果不行, 把上面語句保存為powershell腳本, 用如下語句運行:
#PowerShell.exe?-ExecutionPolicy?Bypass?-File?.\runme.ps1
?
?
?