当我在命令提示符中使用“-console”启动可执行文件时,将启动第二个命令提示符。如何将控制权传递给另一个命令提示符?

时间:2017-05-03 14:39:37

标签: python windows command-line

我正在尝试在Windows中自动执行安装过程

import subprocess
import os
from pywinauto.application import Application
os.system('cmd.exe')

os.chdir('C:/PathOfExecutableIWantToLaunch')
os.system('ExecutableFile -console')
# A new command prompt is launched with options 1 and 2
# How to pass control to second command prompt
os.system('1')
# I want to pass option 1 to proceed with installation
如何在Python中自动化这个部分?

0 个答案:

没有答案