成都创新互联网站制作重庆分公司

利用Powershell脚本和定时任务自动批量开邮箱

  1. 首先确保powershell 执行策略
PS C:\Users\administrator.51TALK> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned
PS C:\Users\administrator.51TALK> Get-ExecutionPolicy
RemoteSigned
  1. 写PS脚本
    
    Add-PSSnapin microsoft.exchange*
    Import-Module activedirectory  
    $dbs= @("bjstaff01","bjoffice","bjstaff02","bjstaff03")
    $users= Get-User -OrganizationalUnit "北京"  -RecipientTypeDetails user  
    foreach($i in $users){
    $db= get-random -InputObject $dbs
    Enable-Mailbox -Identity $i -Database $db
    }

3. 创建任务计划
![](/upload/otherpic58/175091.jpg)

当前题目:利用Powershell脚本和定时任务自动批量开邮箱
文章URL:http://cxhlcq.com/article/jodjeg.html

其他资讯

在线咨询

微信咨询

电话咨询

028-86922220(工作日)

18980820575(7×24)

提交需求

返回顶部