要在Python中调用PowerShell命令,您可以使用subprocess
模块
import subprocess
# PowerShell命令
powershell_command = "Get-Process"
# 在PowerShell中运行命令
result = subprocess.run(["powershell", "-Command", powershell_command], stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
# 输出结果
print("输出:")
print(result.stdout)
# 输出错误(如果有)
if result.stderr:
print("错误:")
print(result.stderr)
在这个例子中,我们使用subprocess.run()
函数执行了一个简单的PowerShell命令Get-Process
,该命令列出当前正在运行的所有进程。stdout
和stderr
参数用于捕获命令的输出和错误(如果有)。text=True
参数表示我们希望以文本形式接收输出,而不是字节形式。