0

我正在编写一个脚本来以不同的用户身份运行 IE。在开始脚本显示输入,我想使用输入值作为用户名。

Option explicit
Dim Input, europe

Input = InputBox("Please type mailbox name")

europe = "EUROPE\" & Input 

Dim oShell
set oShell= Wscript.CreateObject("WScript.Shell")
oShell.Run "RunAs /profile /user:" & europe &  "C:\Program Files\Internet Explorer\iexplore.exe"
WScript.Sleep 100
oShell.Sendkeys Input
oShell.Sendkeys "{ENTER}"
Wscript.Quit

如您所见,用户名在域上EUROPE\,密码与用户名相同。

所以用户名应该是这样EUROPE\ & Input的,和密码& Input

我无法从变量中获取字符串并将其传递给 shell 命令。

4

1 回答 1

0

好的,设法做到了。如果要将变量中的字符串作为用户名,则需要这样放置:

oShell.Run "RunAs /profile /user:" & europe &" ""C:\Program Files\Internet Explorer\iexplore.exe
于 2013-05-08T14:26:52.610 回答