Seeking Equivalent Microsoft Graph Command for AzureAD Integrated Applications #2546
Unanswered
simonmocquet
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I'm currently transitioning from using the AzureAD PowerShell module to the Microsoft Graph PowerShell SDK for managing Azure resources. I've encountered a specific use case where I'm not able to find an equivalent command in the Microsoft Graph PowerShell SDK.
In the AzureAD module, I use the following command to list all service principals that are tagged as integrated applications with Azure AD:
Get-AzureADServicePrincipal -All:$true | Where-Object {$_.Tags -eq "WindowsAzureActiveDirectoryIntegratedApp"}
This command helps me identify Azure AD integrated applications, specifically tagged as "WindowsAzureActiveDirectoryIntegratedApp". I'm looking for an equivalent or workaround in the Microsoft Graph PowerShell SDK to retrieve the same information. Any suggestions or commands in the Graph SDK for this purpose?
Thank you,
Simon
Beta Was this translation helpful? Give feedback.
All reactions