Forum Discussion
Alex_Rechs
Mar 21, 2023Brass Contributor
Method not found 'Void Microsoft.Graph.TokenCredentialAuthProvider'
Hello, I try to run a runbook in Hybrid Worker to collect info from Azure Registered Apps. For that activity I connect to MS Graph with certificate and execute Get-MgApplication cmdlet. However, I s...
Sagar_Harak
Jul 13, 2023Copper Contributor
Hey, still i am getting the same error . Please can you helpAlex_Rechs
- Alex_RechsJul 14, 2023Brass Contributor
Eventually I installed Microsoft Graph version 1.24.0 on Hybrid Worker machine
I remember I installed that certificate under system account and Hybrid Worker account, but I don't recall what worked and at this point I'm afraid to touch it 🙂
The way I connect to Graph is:
Connect-MgGraph -CertificateThumbprint "<certThumbprint>" -ClientID "<clientID>" -TenantID "<tenantID>"
Select-MgProfile -name BetaI hope that helps.