码迷,mamicode.com
首页 > 系统相关 > 详细

Powershell管理系列(三十一)PowerShell操作之批量创建邮箱

时间:2016-05-13 15:35:01      阅读:329      评论:0      收藏:0      [点我收藏+]

标签:powershell管理系列(三十一)powershell操作之批量创建邮箱

-----提供AD\Exchange\Lync\Sharepoint\CRM\SC\O365等微软产品实施及外包,QQ:185426445.电话18666943750

用户需要批量导入邮箱,提供的信息,如姓名、别名、组织单元、显示名、登录名、密码、公司名、部门、邮箱配额,表格如下图

技术分享

步骤1、在powershell中输入如下命令:

Add-PSSnapin microsoft.exchange*
Import-Module activedirectory
Import-Csv C:\mbxinfo.csv | ForEach-Object `
{
new-mailbox -Name $_.name -Alias $_.alias -OrganizationalUnit $_.ou -DisplayName $_.displayname -UserPrincipalName $_.upn `
-Password (ConvertTo-SecureString -String $_.pwd -AsPlainText -Force)
set-mailbox -Identity $_.upn -IssueWarningQuota $_.IssueWarningQuota -ProhibitSendQuota $_.ProhibitSendQuota `
-ProhibitSendReceiveQuota $_.ProhibitSendReceiveQuota -UseDatabaseQuotaDefaults $false
Set-User -Identity $_.upn -Company $_.company -Department $_.dept
}
技术分享

步骤2、我们检查,可以看到邮箱和ad账号都已经批量建好

技术分享

技术分享

本文出自 “周平的微软技术交流平台” 博客,请务必保留此出处http://yuntcloud.blog.51cto.com/1173839/1772885

Powershell管理系列(三十一)PowerShell操作之批量创建邮箱

标签:powershell管理系列(三十一)powershell操作之批量创建邮箱

原文地址:http://yuntcloud.blog.51cto.com/1173839/1772885

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