使用Az Powershell禁用Azure Function App远程调试

时间:2019-07-03 22:40:59

标签: azure powershell

有人知道我如何使用Az Powershell禁用远程调试吗? 我知道我们可以使用az cli来做到这一点,它看起来像这样

az functionapp配置集\   --name Appname \   --ftps状态为“已禁用”   --subscription mysubscription \   --remote-debugging-enabled false \   --resource-group myresourcegroup

任何帮助都会很棒。

谢谢

1 个答案:

答案 0 :(得分:2)

尝试下面的命令,它对我而言效果很好。

$Resource = Get-AzResource -ResourceGroupName <Resource Group Name> -ResourceType Microsoft.Web/sites/config -ResourceName "<Function App Name>" -ApiVersion "2018-02-01"
$Resource.Properties.remoteDebuggingEnabled = "False"
$Resource | Set-AzResource -ApiVersion "2018-02-01" -Force

enter image description here