powershell powershell脚本使用姓氏和给定名称更改AD用户显示名称。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell powershell脚本使用姓氏和给定名称更改AD用户显示名称。相关的知识,希望对你有一定的参考价值。

Import-Module ActiveDirectory
$cnt = Get-ADUser -Filter * -SearchBase "OU=Lebanon,OU=opw,DC=opwftg,DC=COM"
$cnt.count

foreach ($result in $cnt)
 {
 $dname = $result.surname + ", " + $result.givenname
 ##$result.displayname = $dname
 ##Set-ADUser -Instance $user.
 $dname
 }

以上是关于powershell powershell脚本使用姓氏和给定名称更改AD用户显示名称。的主要内容,如果未能解决你的问题,请参考以下文章

powershell 使用powershell下载文件的脚本。

powershell 使用路径和参数调用Powershell脚本

powershell 使用路径和参数调用Powershell脚本

powershell 用于使用Chocolatey安装开发机器的PowerShell脚本。

powershell 用于使用Chocolatey安装开发机器的PowerShell脚本。

powershell 用于使用Chocolatey安装开发机器的PowerShell脚本。