我正在使用 python 子进程模块执行 powershell 脚本。
subprocess.Popen(["powershell.exe","-ExecutionPolicy","bypass","-file","kishore_test.ps1"], stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0]
当我执行时,Powershell 脚本返回版权信息而不是实际输出。所以我想知道,为什么我会得到输出以及如何纠正它。提前致谢。