我是VBS的新手,这就是我想要实现的目标: 在非管理员帐户中运行具有管理员权限的驱动程序安装文件。我知道你可以这样做:
Set WshShell = WScript.CreateObject("WScript.Shell")
If WScript.Arguments.length = 0 Then
Set ObjShell = CreateObject("Shell.Application")
ObjShell.ShellExecute "wscript.exe", """" & _
WScript.ScriptFullName & """" &_
" RunAsAdministrator", , "runas", 1
End if
CreateObject("WScript.Shell").Run "program.exe"
但它提示输入管理员用户名和密码。我不要那个。如何以VBS提供管理员用户名和密码以及运行程序的权限的方式进行此操作?
谢谢!