gpt4 book ai didi

azure - 通过 Azure powershell 仅获取企业应用程序

转载 作者:行者123 更新时间:2023-12-03 02:13:37 25 4
gpt4 key购买 nike

我知道我可以运行 Get-AzureADServicePrincipal -all $true 来获取应用程序列表,但它将返回所有应用程序类型,包括 Microsoft 应用程序和托管标识。我只想要企业应用程序的列表。我可以使用什么命令?

最佳答案

尝试

Get-AzureADServicePrincipal -All:$true | ? {$_.Tags -eq "WindowsAzureActiveDirectoryIntegratedApp"}

如果您在门户中查看,如果您分配了该过滤器(默认情况下已分配),您将看到“企业应用程序”的计数。

通过运行上述命令,如果您这样做了:

$noofentapps = Get-AzureADServicePrincipal -All:$true | ? {$_.Tags -eq "WindowsAzureActiveDirectoryIntegratedApp"} 

然后你执行$noofentapps.count,你会看到数字应该匹配。

关于azure - 通过 Azure powershell 仅获取企业应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72301248/

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