本帖最后由 aloha20200628 于 2024-6-29 11:27 编辑
批处无须下载第三方而利用系统内置资源直接在命令行调用下载网页的方法,至少有以下三种...
一。bitsadmin.exe,虽已被微软官宣会被powershell有关功能接管,但win8.1简中系统验证依然有效
命令行用法示例》其中下载结果文件名须为全路径,详细用法参数可用 bitsadmin /? 查看- bitsadmin /transfer "自定义任务名" /dynamic /download /priority normal "http://www.bathome.net/index.php" "c:\temp\下载网页.txt"
复制代码 二。certutil.exe,详细用法参数可用 certutil /? 查看- certutil -urlcache -split -f "http://www.bathome.net/index.php" "下载网页.txt"
复制代码 三。powershell,两个下载网络数据的方法
第一方法- powershell -c "(new-object System.Net.WebClient).DownloadFile('http://www.bathome.net/index.php', '下载网页.txt')"
复制代码 第二方法- powershell -c "invoke-webrequest -uri 'http://www.bathome.net/index.php' -outfile '下载网页.txt'"
复制代码
|