所以我有一个powershell脚本将我连接到Office 365.这只是Microsoft网站的标准。
我可以运行其中任何一个命令来删除许可证并从powershell转换为共享邮箱。
Get-Mailbox -identity engineering@domainname.com | set-mailbox -type “Shared”
$MSOLSKU = (Get-MSOLUser -UserPrincipalName engineering@domainname.com).Licenses[0].AccountSkuId
Set-MsolUserLicense -UserPrincipalName engineering@domainname.com -RemoveLicenses $MSOLSKU
我尝试过使用get-content从txt文件中获取用户,但似乎无法从那里开始。任何建议都会受到高度赞赏,并提前表示非常感谢。
谢谢,
SG