mjm21
asked on
Powershell / quest commandlets script that will export a list of users that are Enabled and "Do Not" have SID History then export to .csv file
Powershell / quest commandlets script that will export a list of users that are Enabled and "Do Not" have SID History then export to .csv file
get-qaduser -sl 0 -enabled -ip sidhistory | where{$_.sidhistory -eq "<not set>"} | select samaccountname | export-csv users.csv
ASKER
testing now
ASKER
Can you sendme one that will run with the quest commandlets? Also, set it in such a way that we are pulling from a particular OU?
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.