四川圣与卓专注绵阳梓潼网站设计 梓潼网站制作 梓潼网站建设
绵阳梓潼网站建设公司服务热线:028-86922220

网站建设知识

十年网站开发经验 + 多家企业客户 + 靠谱的建站团队

量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决

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

其他资讯