我想使用python打开命令提示符然后我需要在此命令提示符上运行命令,该命令提示符将启动应用程序。
在Windows Server 2008R2上尝试以下代码,打开并打开命令提示符并输入命令,按ENTER键时会显示错误消息:
'C:\Windows\System32\CompMgmtLauncher.exe' is not recognized as an internal or external command, operable program or batch file.
我的代码:
Popen(["start", "/MAX","cmd.exe"], shell=True)
wait(3)
print("Starting Application")
type("c:\\Windows\\System32\\CompMgmtLauncher.exe")
type(Key.ENTER)
请帮助解决这个问题。