我正在尝试将用Linux编写的powershell脚本转移到Azure中托管的Windows计算机。我们的想法是将脚本复制到Windows机器并执行它。我正在使用PyWinRM来完成这项任务。 PyWinRM中没有可用于一次传输文件的直接机制。我们必须将文件转换为流并对文件进行一些字符编码,以便在转移时与PowerShell内联。有关详细说明click here。用于将文件从Linux流式传输到Windows的python脚本如下所示
winclient.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' = Test-Connection -ComputerName -Count 1 |选择-ExpandProperty IPV4Address
仔细查看上面的行并将其与代码中的 script_text 字符串进行比较,您会发现变量名称,如 $ hostname,$ ipV4 ,以<传输到Windows完成后,缺少strong> $ 键。 有人可以解释发生了什么以及如何解决它? 提前致谢。 : - )
答案 0 :(得分: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中执行的内容需要稍微修改一下。