process = subprocess.Popen(['powershell.exe', '-ExecutionPolicy', 'Bypass', '-Command',\ powershell_script], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
时间: 2023-12-23 11:03:37 浏览: 231
python中的subprocess.Popen()使用详解
5星 · 资源好评率100%
这是一个使用Python的subprocess模块执行PowerShell脚本的代码示例。其中,'powershell.exe'指定了要执行的命令为PowerShell,'-ExecutionPolicy'指定了Bypass参数以跳过执行策略,'-Command'后面跟着要执行的PowerShell脚本。执行结果会被输出到stdout和stderr中。
阅读全文