块的前景在任何地方的用户列表。我对 53 k 用户在大型组织中运行此脚本。
1.首先创建 Users.cvs c: 驱动器上。
2.创建没有引号和列表中的”TargetAccount”列标题您的 NTAccountname,(域 \ 用户名) 的用户
3.运行脚本
PowerShell
$infile = “C:\users.csv”
$users = import-csv $infile
$users | foreach-object {
if ($_.TargetAccount -ne $null) {
set-casmailbox $_.TargetAccount -warningaction silentlycontinue -MAPIBlockOutlookRpcHttp $true
}}
Latest posts by Exchange中文站 (see all)
- 微软将推出卫星解决方案:可连接到 Azure 云服务 - 2020年9月17日
- Windows Terminal 1.0正式发布 - 2020年5月25日
- Azure Lighthouse 相关介绍 - 2020年3月2日
发布于:
浏览:1246 次
还没有评论