0
A
回答
2
例如,我用一個小功能在PowerShell和一個批處理文件,我可以下載這樣的一個文件:
@echo off
Set "URL=http://www.kcc.edu/campaigns/PublishingImages/poh.jpg"
Set "File=%USERPROFILE%\Pictures\Hello.png"
Call :Download "%URL%" "%File%"
Start "" "%File%"
exit
::**********************************************************************************
:Download <url> <File>
Powershell.exe -command "(New-Object System.Net.WebClient).DownloadFile('%1','%2')"
exit /b
::**********************************************************************************
這裏是我用同樣的功能,以下載名爲工具的另一個例子VirusTotal Uploader from Virustotal.com上傳和檢查文件。
1
用的bitsadmin:
bitsadmin /transfer myDownloadJob /download /priority normal http://downloadsrv/jpg.jpg "%userprofile%\pictures\jpg.jpg"
call winhhtpjs.bat https://example.com/files/jpg.jpg -saveTo "%userprofile%\pictures\jpg.jpg"
每個用戶的圖片目錄位於%userprofile%\pictures
相關問題
- 1. 批處理文件下載一個文件,名稱從FTP
- 2. 批處理文件從FTP下載文件
- 3. 只能從FTP下載新文件的批處理文件?
- 4. 使用WinSCP下載批處理文件
- 5. 如何從批處理文件中調用批處理文件?
- 6. 從另一個批處理文件運行批處理文件
- 7. 如何從批處理文件調用批處理文件
- 8. 從另一個批處理文件更新批處理文件
- 9. 從C批處理文件運行批處理文件#
- 10. 從批處理文件
- 11. 從批處理文件
- 12. 從批處理文件
- 13. 從文件,批處理
- 14. FTP批處理文件下載多文件夾
- 15. 批處理文件只有今天下載文件
- 16. 批處理文件「」
- 17. 批處理文件
- 18. 批處理文件
- 19. 批處理文件
- 20. w3wp處理下載文件
- 21. 使用linux從網站下載批處理文件
- 22. 使用Windows批處理文件從FTP服務器下載今天的文件
- 23. 批處理文件條件
- 24. 批處理文件不會在批處理文件
- 25. 批處理文件,創建另一個批處理文件
- 26. 批處理文件:另存爲批處理文件(.cmd)
- 27. 將批處理文件包含在批處理文件中
- 28. Oracle在批處理文件中導入批處理文件
- 29. 將批處理文件寫入批處理文件
- 30. 在批處理文件中運行幾個批處理文件
沒關係謝謝 –