通过Powershell脚本运行python脚本

时间:2019-07-04 14:59:15

标签: python-3.x powershell-4.0

我想通过PowerShell脚本(不在PowerShell窗口中)运行python脚本,因为我需要Microsoft Flow才能稍后计划Powershell脚本。在PowerShell窗口中,它与python test.py一起使用。

我已经用Google搜索了一些解决方案。最接近的是:

$path = '\\test'
$file = 'test.py'

$cmd = $path+"\\"+$file  # This line of code will create the concatenate the path and file
Start-Process $cmd 

但是此命令仅打开我的Pycharm,而无需执行代码。请帮我解决一下这个。提前致谢。

0 个答案:

没有答案