在Python中使用Autoit打开命令提示符



我对编码相当陌生,想打开CMD在其中运行命令。

import autoit
import time
autoit.run("cmd.exe")
autoit.win_wait_active("[CLASS:Command]", 3)
autoit.control_send("[CLASS:Command]", "Edit1", "hello world{!}")

我只是想加载CMD并在其中运行我选择的命令。

谢谢:)

您可以尝试使用subprocess模块-

import subprocess
p = subprocess.Popen(["start", "cmd", "/k", "Command_Here"], shell = True)

相关内容

  • 没有找到相关文章

最新更新