135-1821-9792

利用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://kswsj.com/article/jodjeg.html

其他资讯



Copyright © 2009-2022 www.kswsj.com 成都快上网科技有限公司 版权所有 蜀ICP备19037934号