process = subprocess.Popen(['powershell.exe', '-ExecutionPolicy', 'Bypass', '-Command',\ powershell_script], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
时间: 2023-12-23 17:03:37 浏览: 214
对Python subprocess.Popen子进程管道阻塞详解
这是一个使用Python的subprocess模块执行PowerShell脚本的代码示例。其中,'powershell.exe'指定了要执行的命令为PowerShell,'-ExecutionPolicy'指定了Bypass参数以跳过执行策略,'-Command'后面跟着要执行的PowerShell脚本。执行结果会被输出到stdout和stderr中。
阅读全文