0

我正在尝试将用 Linux 编写的 powershell 脚本传输到托管在 Azure 中的 Windows 机器上。这个想法是将脚本复制到Windows机器并执行它。我正在使用 PyWinRM 来完成这项任务。PyWinRM 中没有直接的机制可以一次性传输文件。我们必须将文件转换为流,并在传输之前对文件进行一些字符编码,以便与 PowerShell 内联。详细解释请点击这里。用于将文件从 Linux 流式传输到 Windows 的 python 脚本如下所示

客户端.py

script_text  = """$hostname='www.google.com'
$ipV4 = Test-Connection -ComputerName $hostname -Count 1  | Select  -ExpandProperty IPV4Address
"""

part_1 = """$stream = [System.IO.StreamWriter] "gethostip.txt"
    $s = @"
    """
    part_2 = """
    "@ | %{ $_.Replace("`n","`r`n") }
    $stream.WriteLine($s)
    $stream.close()"""

    reconstructedScript = part_1 + script_text + part_2
    #print reconstructedScript
    encoded_script = base64.b64encode(reconstructedScript.encode("utf_16_le"))

    print base64.b64decode(encoded_script)
    print "--------------------------------------------------------------------"
    command_id = conn.run_command(shell_id, "type gethostip.txt")
    stdout, stderr, return_code = conn.get_command_output(shell_id, command_id)
    conn.cleanup_command(shell_id, command_id)
    print "STDOUT: %s" % (stdout)
    print "STDERR: %s" % (stderr)

现在,当我运行脚本时,我得到的输出是

    $stream = [System.IO.StreamWriter] "gethostip.ps1"
    $s = @"
    $hostname='www.google.com'
    $ipV4 = Test-Connection -ComputerName $hostname -Count 1  | Select -ExpandProperty IPV4Address
    "@ | %{ $_.Replace("`n","`r`n") }
    $stream.WriteLine($s)
    $stream.close()
   --------------------------------------------------------------------
   STDOUT: ='www.google.com'
   = Test-Connection -ComputerName  -Count 1  | Select -ExpandProperty IPV4Address


    STDERR: 
    STDOUT: 
    STDERR:

这里的争论点是输出中的以下几行。

STDOUT: ='www.google.com' = 测试连接 -ComputerName -Count 1 | 选择 -ExpandProperty IPV4Address

仔细看上面几行,和代码中的script_text字符串比较一下,你会发现在传输到windows完成后,以$ key开头的$hostname、$ipV4等变量名不见了。有人可以解释发生了什么以及如何解决它吗?提前致谢。:-)

4

1 回答 1

3

使用带有单撇号而不是双引号的 here-string。这里的字符串也可以替换为$var它们的值。

$s = @'
$hostname='www.google.com'
$ipV4 = Test-Connection -ComputerName $hostname -Count 1  | Select -ExpandProperty IPV4Address
'@ | %{ $_.Replace("`n","`r`n") }

也就是说,您的 Python 部分可能没问题,但在 Powershell 中执行的内容需要稍作更改。

于 2017-04-25T13:56:08.723 回答