1

通过 Azure 门户,我可以断开我的 VNet 集成,见下文。我需要使用 Az 模块在 Powershell 脚本中执行此操作。这可能吗?

在此处输入图像描述

4

1 回答 1

5

只需使用下面的命令,它在我这边工作正常。

Remove-AzResource -ResourceGroupName "<resource-group-name>" -ResourceType "Microsoft.Web/sites/config" -ResourceName "<webapp-name>/virtualNetwork" -Force

或者

Remove-AzResource -ResourceId "/subscriptions/<subscription-id>/resourceGroups/<resource-group-name>/providers/Microsoft.Web/sites/<webapp-name>/config/virtualNetwork" -Force
于 2020-04-08T01:56:44.103 回答