gpt4 book ai didi

azure - 如何摆脱 Azure Powershell 警告 "WARNING: AzureVM A property of the output of this cmdlet will change in an upcoming..."

转载 作者:行者123 更新时间:2023-12-03 04:46:15 26 4
gpt4 key购买 nike

我有一些旧的 Azure Powershell 脚本,我正在将它们拿出来再次使用。它们似乎按照我内存中的方式工作,除了我收到这些警告:

$VirtualMachine = Add-AzureRmVMNetworkInterface -VM $VirtualMachine -Id $nic.Id

WARNING: Add-AzureRmVMNetworkInterface: A property of the output of this cmdlet will change in an upcoming breaking change release. The Name propertyfor a Sku will return Standard_LRS and Premium_LRS

$vm = Set-AzureRmVMBootDiagnostics -VM $VirtualMachine -Disable

WARNING: Set-AzureRmVMBootDiagnostics: A property of the output of this cmdlet will change in an upcoming breaking change release. TheStorageAccountType property for a DataDisk will return Standard_LRSand Premium_LRS

我没有在脚本中使用任何输出,因此警告毫无用处。这些脚本中有很多输出,我只想查看真正与脚本运行状况和创建的对象有关的内容。

最佳答案

2023 年初,微软再次做出了改变。现在,https://aka.ms/azps-changewarnings文档说使用:

Update-AzConfig -DisplayBreakingChangeWarning $false

# Or use this to avoid pushing the result into PS's output pipeline
[void](Update-AzConfig -DisplayBreakingChangeWarning $false)

这些文档仍然链接到 another page这表示您可以使用环境变量作为替代方案:

Set-Item Env:\SuppressAzurePowerShellBreakingChangeWarnings "true"

但是,该环境变量对我不再起作用。

关于azure - 如何摆脱 Azure Powershell 警告 "WARNING: AzureVM A property of the output of this cmdlet will change in an upcoming...",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57562831/

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