利用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脚本和定时任务自动批量开邮箱
当前链接:http://pwwzsj.com/article/jodjeg.html