powershell [AD - 创建/编辑AD用户]通过powershell创建/编辑AD用户,使用纯文本密码#Windows #Powershell #ActiveDirectory

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell [AD - 创建/编辑AD用户]通过powershell创建/编辑AD用户,使用纯文本密码#Windows #Powershell #ActiveDirectory相关的知识,希望对你有一定的参考价值。

New-ADUser -SamAccountName <userName> -GivenName <firstName> -SurName <lastName> -Name "<firstName> <lastName>" -DisplayName "<firstName> <lastName>" -UserPrincipalName <userName>@<domain> -ChangePasswordAtLogon $true -AccountPassword (ConvertTo-SecureString <password> -AsPlainText -force) -Enabled $True -PasswordNeverExpires $False -PassThru -Path "OU=<ou>,OU=<path>,DC=<domain>,DC=<path"

以上是关于powershell [AD - 创建/编辑AD用户]通过powershell创建/编辑AD用户,使用纯文本密码#Windows #Powershell #ActiveDirectory的主要内容,如果未能解决你的问题,请参考以下文章

Powershell 批量导入AD账户

Powershell - 从 AD 列表中获取用户信息

使用 KeyVault 和 Azure PowerShell 证书身份验证创建 Azure AD 应用程序

powershell [AD - List AD OU]列出域中的所有AD OU #Windows #Powershell #ActiveDirectory

powershell分享5--AD中常用的小语句

powershell Powershell命令用于导出Azure AD并导入到本地AD