1.创建VBS自动输入密码以管理员权限运行安装软件脚本
Set WshShell = CreateObject("WScript.Shell")
Set Fs = CreateObject("Scripting.FileSystemObject")
'域管理员身份运行start.bat脚本安装软件
WshShell.Run "runas /user:domain\admin d:\start.bat"
WScript.Sleep(1000)
'密码是Abc1234,分段发送中间加个Shift就可以避开中文输入法
WshShell.SendKeys "Abc"
WScript.Sleep(1000)
'"+"这是发送一个Shift
WshShell.SendKeys "+"
WshShell.SendKeys "1234{Enter}"
1
2
3
4
5
6
7
8
9
10
11
2.创建需要安装的软件脚本start.bat
我这里以企业微信为例,上面那个脚本以管理员身份打开start.bat脚本,这样就实现了管理员身份自动静默安装微信程序,并自定安装目录。(注:并非所有软件都支持这样的静默安装参数)
@echo off
start /wait d:\WXWork_3.0.31.3305.exe /NCRC /S /D=d:\Program Files (x86)\WXWork
1
2
完成!
如有更好的方法,欢迎留言。
来自 https://blog.csdn.net/wushaoqiu2011/article/details/109231833