Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

How can i use Microsoft Graph .NET SDK in powershell? I am writing a powershell script to use Microsoft Graph SDK.

Please help me in this issue.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
176 views
Welcome To Ask or Share your Answers For Others

1 Answer

Microsoft Graph has a powershell SDK. The packages from this SDK are published to Powershell Gallery. It is published as a Meta package Microsoft.Graph which contains all the modules. However, you can install individual modules as you see fit as they are available.

You can install the module using the following command in a powershell console. Install-Module Microsoft.Graph

You can install single modules such as the Users or Teams modules

  • Install-Module -Name Microsoft.Graph.Teams.Team
  • Install-Module -Name Microsoft.Graph.Users.User

To authenticate call Connect-Graph which uses Device Code Flow or Certificate to Authenticate. You can also pass in your desired scopes.

  • Connect-Graph
  • Connect-Graph -Scopes 'User.Read'

From that point you gain access to cmdlets such as Get-MgUser


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...