11月份,Microsoft发布了PSA,通知365用户有关最终用户的通信功能,并提供了有关如何通过365管理门户禁用它的手动说明。
Log into the Office 365 admin center
Click on Settings
Click on Services & Add-ins
Click on End User Communications
Flip toggle to Off as shown below.
我们在合作伙伴门户中有200多个租户,并希望使用Azure管理命令通过PowerShell禁用此租户。
我已经阅读了Azure和中央管理cmdletes的功能,但目前看来它们都无法实现我想要的功能
当前除了基本脚本外,没有任何代码可通过PowerShell连接到365 API并使用其ID连接到所有租户
理想情况下,我希望在租户之间使用foreach循环来运行此功能,并禁用此功能以停止使用户收件箱混乱的提示。
类似
foreach ($tenant in $tenants)
{
"disable end user communication"
}
有人可以提供帮助吗?