如何在python中执行powershell或命令提示脚本和打印输出

时间:2016-05-06 18:36:26

标签: python python-3.x powershell command-prompt

我正在尝试从python运行并打印mypowershell脚本 或者在python中运行cmd命令并打印结果 2个文件位于目录“C:\ workspace \ test” - > program.ps1和program.py

powershell脚本 - > program.ps1:

Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize

cmd命令:

powershell -noexit "& ""C:\workspace\test\program.ps1"""

两个命令都在Windows中打印已安装的程序 我怎么能在python中运行这两个命令之一? 感谢你举个例子

0 个答案:

没有答案