从 Python 运行 Powershell 返回版权信息

从 Python 运行 Powershell 返回版权信息

我正在使用 python 子进程模块执行 powershell 脚本。

subprocess.Popen(["powershell.exe","-ExecutionPolicy","bypass","-file","kishore_test.ps1"], stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0]

当我执行时,Powershell 脚本返回版权信息而不是实际输出。所以我想知道,为什么我会得到输出以及如何纠正它。提前致谢。

相关内容