Skip to content

Instantly share code, notes, and snippets.

  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
lithnet-get-ComputedMember-from-input-file.ps1
Import-Module LithnetRMA
$a=Get-Content "c:\FIMScripts\GroupNames.txt"
ForEach ($i in $a)
{
Write-Host $i
$Members=Search-Resources -XPath "/Group[DisplayName = '$i']" -AttributesToGet @("ComputedMember")
foreach ($Member in $Members.ComputedMember)
{
$User = Get-Resource -ID $Member -AttributesToGet AccountName
$Name = $User.AccountName
# List of samAccountNames written to txt file
$Name>>C:\users\$env:USERNAME\desktop\FIMGroups\$i.txt
$GroupFile=Get-Content C:\users\$env:USERNAME\desktop\FIMGroups\$i.txt | sort-object | Out-File -Filepath C:\users\$env:USERNAME\desktop\FIMGroupsSorted\$i.txt
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment