Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to export Group membership - following is the script , however is it possible to put a filter based on User ID , like, I want to export all users, prefix with K

$FilePath = "c:/data/ADGroupmembership_09feb.csv"
$OuDomain = "DC=test, DC=abc, DC=com"
Get-QADUser -searchRoot $OuDomain -SizeLimit 0 | Select-Object dn, sAMAccountName, @{Name="Groups";Expression={(Get-QADMemberOf $_ | Select-Object -expandProperty Name) -join ";"}} | export-csv $FilePath | Sort-Object SamAccountName

==================================================

for example

samaccountname=*K*

or

$OuDomain = "CN=*K*,DC=test, DC=abc, DC=com"

Regards Naveen

share|improve this question

1 Answer

up vote 1 down vote accepted

Try this:

 Get-QADUser -SamAccountName k* -searchRoot $OuDomain -SizeLimit 0 | Select-Object dn, sAMAccountName, @{Name="Groups";Expression={(Get-QADMemberOf $_ | Select-Object -expandProperty Name) -join ";"}} | export-csv $FilePath | Sort-Object SamAccountName
share|improve this answer
Thanks a lot ... It's working fine. Could you please have a look on this link pastebin.com/9FPJrK3n I have some issue , I already asked this question. Thanks again for help. – Naveen Feb 9 '12 at 12:31
For the other issue, if the problem is the memory, try to compare less user at a time filter as in this question like this: Get-Qaduser -samaccountname [a-e]* ... and after the other letters: [f-n]* and the [o-z]* – C.B. Feb 9 '12 at 12:40
Perfect, Thanks a lot. – Naveen Feb 9 '12 at 12:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.