调用Update Mgplace CMDLET不起作用

发布于 2025-01-20 13:51:04 字数 1173 浏览 0 评论 0原文

我正在尝试使用cmdlet update-mgplace修补一个

$addProp = @{
floorNumber = 1
capacity = 15
}

Update-MgPlace -PlaceId <myRoomId> -AdditionalProperties $addProp

错误

update-mgplace_updateexpanded:更新请求必须用于租户或室内列表。 aucaractèrec:\ users \ xxxx \ documents \ windowspowershell \ modules \ microsoft.graph.calendar \ 1.9.0 \ exports \ v1.0 \ proxycmdletdletdefinitions.ps1:17598:17598:23:23:23:23 $ scriptcmd = {&amp; $ wrappedcmd @psboundParameters}

  categoryInfo:invalidoperation :( {{placeid = c62 ... oftgraphplace}:&lt;&gt;&gt; f__ anononymoustype872)[update-mgplace_update expanded],restexception1
完全QualifiedErrid:Microsoft.graph.powershell.cmdlets.updatemgplace_updateExpanded
 

带有同一管理员帐户并需要权限,我使用Graph Explorer成功地更新了该位置:

{
    "@odata.type": "#microsoft.graph.room",
    "capacity": "15",
    "floorNumber": "1"
}

I'm trying to patch a Place using the cmdlet Update-MgPlace

$addProp = @{
floorNumber = 1
capacity = 15
}

Update-MgPlace -PlaceId <myRoomId> -AdditionalProperties $addProp

Getting this error

Update-MgPlace_UpdateExpanded : Update request has to be for a tenant Room or RoomList.
Au caractère C:\Users\XXXX\Documents\WindowsPowerShell\Modules\Microsoft.Graph.Calendar\1.9.0\exports\v1.0\ProxyCmdletDefinitions.ps1:17598 : 23
$scriptCmd = {& $wrappedCmd @PSBoundParameters}

CategoryInfo : InvalidOperation : ({ PlaceId = c62...oftGraphPlace }:<>f__AnonymousType872) [Update-MgPlace_UpdateExpanded], RestException1
FullyQualifiedErrorId : Microsoft.Graph.PowerShell.Cmdlets.UpdateMgPlace_UpdateExpanded

With the same administrator account and required permissions, I sucessfully update the Place using Graph Explorer :

{
    "@odata.type": "#microsoft.graph.room",
    "capacity": "15",
    "floorNumber": "1"
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凉风有信 2025-01-27 13:51:04

您需要指定-bodyParameter而不是-additionalProperties

在请求主体中,使用@odata.type指定位置类型。

$params = @{
"@odata.type" = "microsoft.graph.room"
floorNumber = 1
capacity = 15
}

Update-MgPlace -PlaceId <myRoomId> -BodyParameter $params

You need to specify -BodyParameter instead of -AdditionalProperties.

In the request body, use @odata.type to specify the type of place.

$params = @{
"@odata.type" = "microsoft.graph.room"
floorNumber = 1
capacity = 15
}

Update-MgPlace -PlaceId <myRoomId> -BodyParameter $params
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文