May 2019
Intermediate to advanced
620 pages
21h 41m
English
Use the following lines of PowerShell to find all groups without memberships in Active Directory on a system with the Active Directory module for Windows PowerShell installed:
Import-Module ActiveDirectoryGet-ADGroup -Filter * -Properties members | Where-Object {$_.Members.count -eq 0} | Out-GridView