Updating Active Directory user properties in Active Directory using Powershell

谁说我不能喝 提交于 2019-12-06 06:30:32

问题


In a Windows Server 2003 R2 environment, using Powershell v2.0, how would one duplicate the functionality of Set-QADUser to update user properties in Active Directory, like their phone number and title?

The trick here being, I would like to do this without depending on Set-QADUser and I do not have the option to use the Server 2008's commandlets, yet.

Thanks.


回答1:


Piecing things together from around the internet, I came up with this...

function Get-ADUser( [string]$samid=$env:username){
     $searcher=New-Object DirectoryServices.DirectorySearcher
     $searcher.Filter="(&(objectcategory=person)(objectclass=user)(sAMAccountname=$samid))"
     $user=$searcher.FindOne()
      if ($user -ne $null ){
          $user.getdirectoryentry()
     }
}

$user = Get-ADUser 'UserName'

# Output all properties
$user.psbase.properties

# Change some properties
$user.title = 'New Title'
$user.telephoneNumber = '5555551212'
$user.SetInfo()

# Output the results
$user.title
$user.telephoneNumber

More Information

  • Using PowerShell to work with ADSI to manage an Active Directory environment
  • SelfADSI : The ADSI Scripting Tutorial / The LDAP Scripting Tutorial
  • IADsUser Interface



回答2:


You will want to use the ADSI objects in PowerShell. The syntax is going to look similar to vbscript because you are using the same component.



来源:https://stackoverflow.com/questions/2184692/updating-active-directory-user-properties-in-active-directory-using-powershell

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!