码迷,mamicode.com
首页 > 其他好文 > 详细

批量创建exchange 2010/2013/2016邮箱

时间:2020-02-22 13:33:31      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:base   als   shel   ESS   proc   last   logo   ring   code   

域控上创建对应OU
批量创建exchange邮箱

  1. 定义一个统一密码:password
    $MailPasswd =ConvertTo-SecureString password -AsPlainText -Force

2.新建CSV文件NewMail.csv,格式如下
LastName,UserPrincipalName,Database,Alias,DisplayName,OrganizationalUnit,FirstName,Name,

LastName :姓
UserPrincipalName :邮箱地址
Database :指定数据库
Alias :别名
DisplayName :显示名称
OrganizationalUnit :指定一个OU
FirstName :名
Name :姓名

  1. 以管理员身份运行:Exchange Management Shell,运行下面命令

Import-Csv D:\test\NewMail.csv | ForEach-Object -Process {New-Mailbox -ResetPasswordOnNextLogon:$False -LastName $_.LastName -UserPrincipalName $_.UserPrincipalName -Database $_.Database -Alias $_.Alias -Password $MailPasswd -DisplayName $_.DisplayName -OrganizationalUnit $_.OrganizationalUnit -FirstName $_.FirstName -Name $_.Name}

批量创建exchange 2010/2013/2016邮箱

标签:base   als   shel   ESS   proc   last   logo   ring   code   

原文地址:https://blog.51cto.com/3032439/2472890

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!