我需要命令提示符以admin身份运行(它现在不行)。我在网上看过解决方案,但他们都使用略有不同的设置,我不敢更改,因为此代码也用于其他部分,我无法访问。我也不能等待用户输入,因为这是与其他脚本一起批处理的脚本的一部分。
感谢您的帮助!
我的代码的相关部分:
'setting up cmd as a string above this code
'Create the shell and send the python command
Dim wsh As Object
Set wsh = VBA.CreateObject("WScript.Shell")
Dim waitOnReturn As Boolean: waitOnReturn = True
Dim windowStyle As Integer: windowStyle = 1
wsh.run cmd, windowStyle, waitOnReturn
End Sub