要在Python中执行PowerShell命令,您可以使用subprocess
模块
import subprocess # PowerShell命令 powershell_command = "Get-Process" # 在PowerShell中执行命令 result = subprocess.run([f'powershell.exe', '-Command', powershell_command], stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True) # 输出结果 print("标准输出:") print(result.stdout) print("错误输出:") print(result.stderr) print("返回码:") print(result.returncode)
在这个例子中,我们使用subprocess.run()
函数执行了一个简单的PowerShell命令Get-Process
,该命令列出当前系统上的所有进程。stdout
、stderr
和text
参数分别用于捕获标准输出、错误输出和以文本形式返回输出。
请注意,您可能需要以管理员身份运行Python脚本才能执行某些PowerShell命令。在这种情况下,您可以尝试以管理员身份运行Python脚本,或者在PowerShell中使用Start-Process
命令启动Python脚本,如下所示:
Start-Process python.exe -ArgumentList "your_script.py" -Verb RunAs