gpt4 book ai didi

Azure Powershell 输出未显示在控制台中

转载 作者:行者123 更新时间:2023-12-04 16:37:27 24 4
gpt4 key购买 nike

我已在 Azure PowerShell 中创建了一个脚本。

如果我使用“echo”命令,它会将输出显示到控制台。

但是,如果我使用 Write-Output 和 Write-Error,我看不到输出。

我已将脚本“change-to-static.ps1”上传到存储帐户。然后我使用顶部栏上的按钮打开“Cloud Shell”。然后我在 PowerShell 控制台中输入“./change-ip-to-static.ps1”。

因此,除非我将“Write-Output”和“Write-Error”替换为“echo”或“print”,否则脚本不会产生任何输出。

请帮助我。我应该怎么做才能看到输出?

脚本如下。

How to output something in PowerShell有类似的问题。我已阅读它,但没有关于如何实现我的目标的具体示例,即如何修改我的脚本以查看输出。就我而言,即使我重定向到文本文件,它也不会输出。然而,在我的例子中,“echo”和“print”等命令可以工作,但上面的示例中没有涵盖它们。请参阅下面的脚本。

$IPs = Get-AzPublicIpAddress; 
$Static = "Static";
foreach ($PublicIP in $IPs) {
$Method = $PublicIP.PublicIpAllocationMethod;
$Name = $PublicIP.Name;
if ($Method -eq $Static) {
$message = "The method of " + $Name + " is already " + $Static;
Write-Progress -Activity $message;
}
else {
Write-Progress -Activity "Changing the method of "+$Name+" from "+$Method+" to "+$Static+"...";
$PublicIP.PublicIpAllocationMethod = $Static;
Set-AzPublicIpAddress -PublicIpAddress $PublicIP;
Write-Progress -Activity "Querying the method of "+$Name+"...";
$ModifiedAddress = Get-AzPublicIpAddress -Name $Name -ResourceGroupName $PublicIP.ResourceGroupName -Location $PublicIP.Location
$NewMethod = $ModifiedAddress.PublicIpAllocationMethod;
if ($NewMethod -eq $Static) {
Write-Output "The method for "+$Name+" has successfully changed to "+$Static;
}
else {
Write-Error -Message "Cannot change the method for "+$Name+" to "+$Static+", it is still "+$NewMethod+"!!!";
}
}
}

附注我有updated the script (use this URL)按照建议,但仍然没有输出。只有“echo”或“print”给出输出。附言Write-Progress Set-AzPublicIpAddress期间甚至不在状态行中显示临时消息这需要几秒钟才能完成,或者如果我添加 Start-Sleep cmdlet。它仅在 Get-AzPublicIpAddress 期间设置.

最佳答案

在阅读了您对我的答案的最后编辑后,我相信您在使用 Write-* commandlet 和脚本逻辑中造成了一些困惑,因此我提供了更详细的答案和上下文。

Powershell Azure Cloud Shell 中的

echoWrite-Output 的别名,执行不带参数的 echo 清楚地显示了这一点(文档 here) .

PS /home/mikelangelo> echo

cmdlet Write-Output at command pipeline position 1
Supply values for the following parameters:
InputObject:

此外:unix echo 还可以在 Powershell Azure Cloud Shell 中运行。

PS /home/mikelangelo> which echo
/usr/bin/echo
PS /home/mikelangelo> /usr/bin/echo ciao mondo
ciao mondo
另一方面,

print 不是 Powershell 别名,因此 unix 对应项是在使用 print 关键字(目前是符号链接(symbolic link))时始终执行的别名到 run-mailcap - 但我不清楚它如何在您的用例中发挥作用。)

PS /home/mikelangelo> which print
/usr/bin/print

所以,基本上,echo Write-Output 都可以工作,因为它们调用相同的命令行开关,除非您执行 直接/usr/bin/echo,混合了技术并有效地损害了可移植性。

回到问题:Write-Output 按预期工作。逻辑错误:您使用 = 作为比较运算符,但需要使用 -eq 来代替。

Write-Progress 需要以不同的方式使用,将其替换为 Write-HostWrite-Output。请参阅 docs 的说明。

请注意,Write-Output 会沿着管道发送一个对象,该对象最终可以表示为控制台输出。另一方面,Write-ProgressWrite-Host 不会生成输出 - 但后者会向主机发送一个对象以进行显示,因此 Write -Host 是在控制台中显示内容的推荐方式。有关 Write-HostWrite-Output 和 Powershell 管道的更多详细信息,请参阅 this question

关于Azure Powershell 输出未显示在控制台中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67918590/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com