--- title: WindowsServer自动下载并安装软件的脚本 date: 2023-05-31 11:11:38 description: WindowsServer自动下载并安装软件的脚本 categories: [技术总结] tags: [Windows] --- ### 脚本代码 ```bash @echo off echo 开始下载应用程序... bitsadmin /transfer n https://geshui-data.oss-cn-hangzhou.aliyuncs.com/hf-rpa-setup.exe c:\1.exe echo 开始安装应用程序... start /wait c:\1.exe /silent echo 安装完成 echo 开始下载应用程序... bitsadmin /transfer n https://geshui-data.oss-cn-hangzhou.aliyuncs.com/vcredist_x86.exe c:\2.exe echo 开始安装应用程序... start /wait c:\2.exe /silent echo 安装完成 ```