使用Microsoft Graph PowerShell SDK更新团队照片



我想用Microsoft Graph PowerShell Cmdlet更新团队的照片。成功运行Connect-MgGraphUpdate-MgTeam。但是当我运行Get-MgTeamPhoto时出现错误

错误:

Get-MgTeamPhoto:术语"Get-MgTeam Photo"是cmdlet的名称,函数、脚本文件或可操作程序。不像以前那样被认可。请确保名称写得正确,如果其中包含路径,请确保它是正确的。请再试一次。

Get-MgTeamPhoto是";β;Microsoft Graph SDK API的版本。您必须将您的Microsoft Graph配置文件更改为";β;版本,以便访问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

相关内容

  • 没有找到相关文章

最新更新