Powershell Office 365将txt文件中的用户转换为共享邮箱并删除许可证

时间:2016-03-11 13:44:18

标签: powershell office365

所以我有一个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

0 个答案:

没有答案