Difference between revisions of "List all AD enabled staff users"

From MyWiki
Jump to: navigation, search
(Created page with "<source lang="powershell"> Get-ADUser -LDAPFilter "(&(employeetype=staff)(!userAccountControl:1.2.840.113556.1.4.803:=2))"     -Properties office, sAMAccountName, givenN...")
 
Line 1: Line 1:
 
<source lang="powershell">
 
<source lang="powershell">
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
+
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
 
</source>
 
</source>

Revision as of 13:21, 1 September 2016

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