从python调用Powershell脚本(在网络驱动器上)?

时间:2018-11-26 15:50:32

标签: python python-3.x powershell

如何从python调用Powershell脚本,但ps脚本位于网络驱动器上?

1 个答案:

答案 0 :(得分:2)

您尝试了吗?

import subprocess
subprocess.call("powershell \\path\to\script.ps1")