Get-ADGroup -Filter | Syntax Examples - Easy365Manager

Skip to content Get-ADGroup Filter Syntax

The PowerShell command Get-ADGroup is part of the Active Directory PowerShell module. Go to this article if you want to know how to install it.

To search effectively for groups in your Active Directory, you should use the Filter switch. Don’t extract all groups and then search the result set.

Use Get-ADGroup -Filter to search directly for improved performance.

Understand the Get-ADGroup Filter Parameter

With the many various filtering options available (LDAP filtering, oData v3.0 filtering, etc.), the filter switch often causes some confusion.

The filter switch used in the Get-ADGroup command uses the PowerShell expression language in the query string.

For example, this is different than, e.g., when using the Get-AzureADGroup command (which uses oData v3.0 filtering)!

The following operators should cover most of your needs:

OperatorMeaningSample expression
-eqEqual toName -eq “G.U.Marketing”
-neNot equal toGroupType -ne “-2147483640”
-gtGreater thanModified -gt “01-06-2021”
-geGreater than or equalCreated -ge “01-01-2018”
-ltLess thanModified -lt “01-02-2021”
-leLess than or equalCreated -le “01-01-2018”
-likeWildcard searchextensionAttribute1 -like “*”
-notlikeWildcard search with negationName -notlike “Exchange*”
-andAndName -like “G.U.*” -and Name -like “*legal*”
-orOrName -like “*marketing*” -or Name -like “*legal*”

Please notice the following in the above examples:

  • Enclose the compared value(s) in apostrophes
  • Use -like ‘*’ and -notlike ‘*’ to find empty or non-empty values

Below you have some code snippets that should point you in the right direction on how to structure your filters for your Get-ADGroup search queries:

Get-ADGroup -Filter 'Name -eq "G.U.Marketing"' Get-ADGroup -Filter 'GroupType -ne "-2147483640"' Get-ADGroup -Filter 'Modified -gt "01-06-2021"' Get-ADGroup -Filter 'Created -ge "01-01-2018"' Get-ADGroup -Filter 'Modified -lt "01-02-2021"' Get-ADGroup -Filter 'Created -le "01-01-2018"' Get-ADGroup -Filter 'extensionAttribute1 -like "*"' Get-ADGroup -Filter 'Name -notlike "Exchange*"' Get-ADGroup -Filter 'Name -like "G.U.*" -and Name -like "*legal*"' Get-ADGroup -Filter 'Name -like "*marketing*" -or Name -like "*legal*"'

How to Manage Office 365 from Active Directory

Easy365Manager is a snap-in to AD Users & Computers that allows you to manage Office 365 mailboxes and licenses as part of your standard AD management.

With Easy365Manager, you can perform all daily Office 365 management tasks directly from AD user properties:

Easy365Manager extends user properties with two new tabs, so you no longer have to switch between multiple web consoles to perform daily management:

Easy365Manager Office 365 user properties
User properties, "Office 365" tab
Exchange Online Mailbox properties in AD Users & Computers
User properties, "Mailbox tab"

With Easy365Manager, you can perform all daily tasks from AD Users & Computers:

  • Assign Office 365 licenses
  • Manage shared mailbox delegation
  • Configure calendar permissions
  • Configure proxyAddresses (with format and uniqueness check)
  • Replicate Azure AD Connect

And a lot more. See the complete feature list here. 

Additionally, Easy365Manager lets you remove your on-premises Exchange Server. This will give you 100% protection from future zero-day exploits targeting Exchange Server.

Try the fully functional 30-day trial now. It only takes a few minutes to install, has zero learning curve, and we guarantee you’ll be saving hours of work before the end of the week!

Search for: Easy365Manager Easy365Manager is the missing link between on-premises and Office 365. Martin DugganTechnology Infrastructure LeadCornerstone, United Kingdom
Office 365 Plugin forActive Directory Users & Computers
Easy365Manager has saved us tons of time. Matt BryantIT Systems AdministratorAudioscan, Canada
Delegate calendar permissions without PowerShell
Easy365Manager is a real time saver! Very well thought out software. Manny MamakasSenior ConsultantGreenwire Solutions, United States
MANAGE MEETING ROOMS AND ROOM LISTS WITH EASE
Saves us time that we can use on our many other projects waiting to be done. Devin GrayDirector of Information Technology & CommunicationCity of Edwardsville, United States
Manage email attributes without on-premises Exchange Server
Easy365Manager installation and Exchange removal was conducted smoothly and rapidly. Support provided by Easy365Manager team is efficient and fast. Eric GaillardIT & Facilities Addex Therapeutics, Switzerland
Install and Configure in Less Than Two Minutes
Removing my old Exchange server is a game changer! What a great time-saver to manage Office 365 and AD on one dashboard! ChristopherSaint Agnes School, United States
Manage Office 365 licenses and mailboxes from AD Users & Computers
Love this tool! Works and does everything we need! Matt WeberSystems AdministratorCommunity Bridges, United States
CONFIGURE OUTLOOK AUTOMAPPING WITHOUT POWERSHELL
Great product, I'm really happy we found it! Charles-Eric HachéHead of IT and TelecommunicationCity of Sainte-Julie, Canada
VIEW AND CONFIGURE AUTO-REPLY SCHEDULES WITHOUT POWERSHELL
We love using Easy365Manager. The program makes everything a lot more enjoyable for us. Bram BorkinkSystems AdministratorLinthorst Techniek, Netherlands
MULTI-OBJECT EDITING OF EXCHANGE ONLINE MAILBOXES
Easy365Manager really took care of a lot of security concerns by being able to turn off our last Exchange Server and simultaneously being able to handle Exchange Online completely in AD, without opening the browser. Marcus OddoSystems AdministratorCodac, United States
Single-click Azure AD Connect synchronization
Aside from Easy365Manager being such a revolutionary tool, your level of expertise in your product and responsiveness to our questions has made us very eager to partner with you. Jerry JacobsenSupv. of Network AdminMetal-Tek, United States

Tag » Active Directory Search Group Name Contains