List all AD enabled staff users

From MyWiki
Revision as of 13:25, 1 September 2016 by George2 (Talk | contribs)

Jump to: navigation, search
import-module ActiveDirectory
Get-ADUser   -LDAPFilter "(&(employeetype=staff)(!userAccountControl:1.2.840.113556.1.4.803:=2))"  ` 
   -Properties office, sAMAccountName, givenName, sn, employeetype,uid |   `
 Select office, sAMAccountName, givenName, sn, employeetype, @{n="uid";e={[string]$_.uid}} |  `
  Export-Csv -Path c:\Scripts\Users.csv -NoTypeInformation