Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jkbryan/95653dc2de15060959665ca8a17d3c4d to your computer and use it in GitHub Desktop.
Save jkbryan/95653dc2de15060959665ca8a17d3c4d to your computer and use it in GitHub Desktop.
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