简体   繁体   中英

Update a team photo with Microsoft Graph PowerShell SDK

I want to update the photo of team with Microsoft Graph PowerShell Cmdlets. run Connect-MgGraph successfully, and also Update-MgTeam . but there is a error when I run Get-MgTeamPhoto

Error:

Get-MgTeamPhoto: The term'Get-MgTeamPhoto' is the name of a cmdlet, function, script file, or operable program. Not recognized as before. Make sure the name is written correctly, and if it contains a path, make sure it is correct Please try again.

Get-MgTeamPhoto is a part of the "beta" version of the Microsoft Graph SDK API. You have to change your Microsoft Graph profile to the "beta" version before you connect in order to access the beta version of the API:

Select-MgProfile -Name "beta"
PS C:\> Get-MgProfile

Name Description
---- -----------
v1.0 A snapshot of the Microsoft Graph v1.0 API for the Global cloud.

PS C:\> Select-MgProfile -Name "beta"
PS C:\> Get-MgProfile

Name Description
---- -----------
beta A snapshot of the Microsoft Graph beta API for the Global cloud.

PS C:\> Connect-MgGraph
Welcome To Microsoft Graph!
PS C:\> Get-MgTeamPhoto -TeamId 12345678-fa70-419b-1122-7da1246bbda9

Id      Height Width
--      ------ -----
648X648 648    648

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM