python调用powershell
时间: 2023-02-26 15:11:08 浏览: 21
python调用shell命令
你可以使用 Python 的 subprocess 模块来调用 PowerShell。例如:
```
import subprocess
powerShellCommand = "Write-Host 'Hello from PowerShell'"
# Run the PowerShell command using subprocess.run
result = subprocess.run(["powershell", "-Command", powerShellCommand], capture_output=True, text=True)
# print the output
print(result.stdout)
```
这将在命令行输出 "Hello from PowerShell"。
注意,需要将命令封装在一个字符串中,并使用 `-Command` 参数传递给 PowerShell。
阅读全文