在现有域账户上开启邮箱
选择【用户邮箱】
选择【现有用户】
选择用户邮箱存放的数据库。
创建完成。
开启邮箱的同时新建域账户
设置新账户的信息。
点开更多选项,继续设置密码。
邮箱创建完成。
打开AD用户和计算机,可以看到账号也同时创建了。
将已断开链接的邮箱关联到现有的域账户
首先禁用邮箱。
然后连接已禁用的邮箱。
打开连接邮箱的向导。
也可以使用Powershell查询已断开连接的邮箱。
Get-MailboxDatabase | Get-MailboxStatistics | Where{$_.DisconnectReason -eq "Disabled"}
通过powershell命令批量开启邮箱
通过CSV文件结合powershell批量开启邮箱
$UserCSV=Import-Csv -Path "D:\powershellscript\aduser.csv" -Encoding Default
foreach ($user in $UserCSV)
{Enable-Mailbox $user.Username -Database $user.DB}
使用powershell命令创建用户并开启单个邮箱
New-Mailbox -Alias zengchuixin -Name "zengchuixin" -FirstName chuixin -LastName zeng -DisplayNa
me "zengchuixin" -UserPrincipalName [email protected] -Password (ConvertTo-SecureString -String ‘[email protected]‘ -AsPlainTex
t -Force)
powershell为现有用户开启邮箱
如果已经开启过了,会报错。
获取更多IT资讯,您也可以关注下方的微信公众号:
曾垂鑫的网络课堂,曾垂鑫大讲堂 - 51CTO学院
http://edu.51cto.com/lecturer/639838.html
原文地址:http://blog.51cto.com/543925535/2065385
时间: 2024-10-13 00:51:10