0

我正在尝试从 Python 到 Powershell 运行特定命令:

该命令在 Powershell 中按预期工作。Powershell中的命令如下:

 gpt .\Method\gpt_scripts\s1_cal_deb.xml -t .\deburst\S1A_IW_SLC__1SDV_20180909T003147_20180909T003214_023614_0292B2_753E_Cal_deb_script.dim .\images\S1A_IW_SLC__1SDV_20180909T003147_20180909T003214_023614_0292B2_753E.zip

电源外壳输出:

在此处输入图像描述

os.getcwd()

'C:\\Users\\Ishack\\Documents\\Neta-Analytics\\Harvest Dates\\S1_SLC_Processing'

当前目录与 PowerShell 中的相同

我试过这样的事情:

import subprocess


process = 'gpt .\Method\gpt_scripts\s1_cal_deb.xml -t .\deburst\S1A_IW_SLC__1SDV_20180909T003147_20180909T003214_023614_0292B2_753E_Cal_deb_script.dim .\images\S1A_IW_SLC__1SDV_20180909T003147_20180909T003214_023614_0292B2_753E.zip'

process = subprocess.Popen(['powershell.exe', '-NoProfile', '-Command', '"&{' + process + '}"'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)


process

输出:

<subprocess.Popen at 0x186bb202388>

但是当我按下回车时我没有得到任何响应,我希望 Python 像在 Powershell 中一样打印输出。我研究了其他类似的问题,但仍然没有解决问题。

谢谢,

伊沙克

4

1 回答 1

2
import os
os.system("powershell.exe -ExecutionPolicy Bypass -File .\SamplePowershell.ps1")

示例Powershell.ps1

Write-Host "Hello world"
hostname

这对我有用。文件SamplePowershell.ps1中的命令。

如果你想使用子进程

import subprocess
k=subprocess.Popen('powershell.exe hostname', stdout=subprocess.PIPE, stderr=subprocess.PIPE);
print(k.communicate())
于 2020-01-29T17:42:08.313 回答