Tagged: Quest

0

Get mailboxes and witch groups there are member of

I need to get all mailboxes, and witch group there are member of. You need Quest ActiveRoles Management Shell for this to work: http://www.quest.com/powershell/activeroles-server.aspx

In the file c:\groupslog.txt each line is a mailbox,...

0

Powershell – Get all Security Groups from AD

First install http://www.quest.com/powershell/activeroles-server.aspx Add-PSSnapin Quest.ActiveRoles.ADManagement -ErrorAction SilentlyContinue $File = “C:\ita\securitygroups.txt” $AllGroups = get-qadgroup -grouptype “Security” | select name, Description $AllGroups | Foreach { echo “” echo “” echo $_.name echo $_.description } | out-File...