使用 Microsoft Graph PowerShell SDK 通过 PowerShell 更新 automaticRepliesSetting

Update automaticRepliesSetting via PowerShell with Microsoft Graph PowerShell SDK

我正在尝试通过 PowerShell 为我的 Exchange Online 用户更新 automaticRepliesSetting。

我知道我可以通过 HTTP 使用图表 API (https://docs.microsoft.com/en-us/graph/api/resources/automaticrepliessetting?view=graph-rest-1.0) 来完成。

是否也可以使用 Microsoft Graph PowerShell SDK 更新这些设置?

我已经安装了 Microsoft.Graph 模块,但没有找到它的 cmdlet...

使用 Set-MailboxAutoReplyConfiguration 不是一个选项,因为我通过具有证书身份验证和限制权限的应用程序注册连接到 Graph...

感谢您的帮助

Is it also possible to update these settings with the Microsoft Graph PowerShell SDK?

我们在 Microsoft Graph PowerShell 模块中没有任何预定义的 cmdlet 可以为特定用户更新 automaticRepliesSetting

如果您想要更新自动回复设置,您可以使用此 PowerShell cmdlet Set-MailboxAutoReplyConfiguration,它是 Exchange PowerShell 模块的一部分。

由于我们没有任何 Microsoft Graph PowerShell cmdlet,您可以在 PowerShell 中使用 Invoke-RestMethod,调用 Update mailbox user setting rest api as explained in this blog(通过调用 MS graph api 使用 PowerShell)。