import bulk atribute to user; bulk import user; import atribute to ad using logonname Posted on February 3, 2012 by dpejic First you must install powershell 2.0 if not exist, if it is installed on Win 2008 R2 PowerShell 2.0 is present. Next, you must install ActiveRoles Management Shell for Active Directory 64-bit you can download from this location http://www.quest.com/QuestWebPowershellCmdletDwnld64bit After install start powershell and type command EXAMPLE: Import-csv C:\importfolder\importFile.csv | foreach-object {Set-qaduser $_.samaccountname -telephoneNumber $_.telephoneNumber -company $_.company -physicalDeliveryOfficeName $_.physicalDeliveryOfficeName} Example of importFile.csv : samaccountname, telephoneNumber, company, physicalDeliveryOfficeName user1, 12345, ibm, finance user2, 12345, ibm, finance user3, 12345, ibm,finance