Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨我正在尝试在 VBA 中运行以下命令
设置 wshShell = CreateObject("WScript.Shell") wshShell.Run "cmd.exe runas some commands"
它正在打开多个命令提示符窗口。
如果我运行 wshShell.Run "cmd.exe" 只有这个然后它会打开一个窗口。
我在第一种情况下做错了什么。
在运行其余命令之前,尝试使用 /K 开关并在 cmd.exe 周围保留引号
wshShell.Run " 'cmd.exe /K' '这里的命令'"