通过Exchange 的 Powershell批量创建AD账户和邮箱
PowerShell
PowerShell/PowerShell: PowerShell 是由微软开发的命令行外壳程序和脚本环境,支持任务自动化和配置管理。它包含了丰富的.NET框架功能,适用于Windows和多个非Windows平台,提供了一种强大而灵活的方式来控制和自动执行系统管理任务。
项目地址:https://gitcode.com/gh_mirrors/po/PowerShell
免费下载资源
·
使用时在Exchange
Powershell界面运行add
mailbox.ps1,用户信息保存在
mailbox.csv文件中
addmailbox.ps1这个文件需要使用文本编辑器打开,修改其中几处
$password= convertto-securestring
Pass@word -asplaintext -force
$OUPath =" OU=mail,DC=RES,DC=Contoso,DC=COM"
function Addmailbox {
$OUPath =" OU=mail,DC=RES,DC=Contoso,DC=COM"
function Addmailbox {
}
gc mailbox.csv | foreach {Addmailbox}
1. 将Pass@word 替换成你们用户的默认密码
2. 将"OU=mail,DC=RES,DC=Contoso,DC=COM"替换成你们的用户OU
3. 将"nj-9l-dc-01.CORP.Contoso.COM" 替换成你们的AD Server名
mailbox.csv内容如下
Chao,Ting | CHAOT@CORP.Contoso.COM | RES-MB-M-01\MB1 | chaot@Contoso.com | HR |
Chen,Jiemin | CHENJM@CORP.Contoso.COM | RES-MB-M-01\MB1 | chenjm@Contoso.com | HR |
Guan,Jian | GUANJ@CORP.Contoso.COM | RES-MB-M-01\MB1 | guanj@Contoso.com | IST |
Guo,Hong | GUOH@CORP.Contoso.COM | RES-MB-M-01\MB1 | guoh@Contoso.com | IST |
文件说明
通过Excel将mailbox.csv 文件打开
第一列是用户的显示名称
第二列是用户的UPN
第三列是用户Exchange服务器邮箱数据库的名称
第四列是用户的邮件地址
第五列是用户的部门
本文来自:http://blog.sina.com.cn/s/blog_7ce5ba880100ta1l.html
GitHub 加速计划 / po / PowerShell
44.28 K
7.17 K
下载
PowerShell/PowerShell: PowerShell 是由微软开发的命令行外壳程序和脚本环境,支持任务自动化和配置管理。它包含了丰富的.NET框架功能,适用于Windows和多个非Windows平台,提供了一种强大而灵活的方式来控制和自动执行系统管理任务。
最近提交(Master分支:3 个月前 )
a1774fd9
3 个月前
5ad1f1d2
3 个月前
更多推荐
已为社区贡献5条内容
所有评论(0)