我正在尝试运行一个简单的 Python 脚本,该脚本运行该ipconfig /all命令作为概念证明。
你可以在下面找到它:
from subprocess import PIPE, run
my_command = "ipconfig /all"
result = run(my_command, stdout=PIPE, stderr=PIPE, universal_newlines=True)
print(result.stdout, result.stderr)
但是我没有成功运行它,我尝试使用命令行并单击它,但它会打开一个 cmd 窗口 1 秒钟,然后关闭它,所以我什至无法阅读它。
编辑:我正在使用 Python 3.7,我的脚本被称为 ipconfig.py
PIPIONE
芜湖不芜
相关分类