September 10, 2009

Search for Ad groups with name containing …

Have you ever noticed that the find function in Active Directory Users and computers (ADUC) console cannot search within a group (or user) name ? You can only search fields that “Starts with” or “ends with” a string. What if I want ton find all groups that contain “web” in their name ?

Here’s how to do it :

  • Select Custom Search from the find dialog
  • Click on the Advanced tab
  • Paste (&(objectCategory=group)(name=*WEB*))
  • Hit then Find Now button

ADUCfind

Oh and don’t forget to replace the “WEB” string by the value you are looking for.

You could also do the same thing from the command line :

dsquery group -name *WEB*

How to Check A WordPress Site's PHP Version (& Upgrade Compatibility)

If you notice that your WordPress hosting provider is not running PHP 7, but has it available to its users, you may want to consider making ...