How to search Outlook Exchange Global Address List with Wildcards?
Our exchange GAL contains many group addresses, and it's hard to find a certain group contains for example "ABC".
In the Contacts tab in outlook there is no option to search for a name that contains "ABC", neither from Active Directory itself (Run: rundll32 dsquery.dll,OpenQueryWindow and tried the Advanced Search).
I used "%ABC%" and "*ABC*", but none works...
Any friendly way to search Outlook Exchange Global Address List with Wildcards ?
microsoft-outlook search exchange address-book wildcards
add a comment |
Our exchange GAL contains many group addresses, and it's hard to find a certain group contains for example "ABC".
In the Contacts tab in outlook there is no option to search for a name that contains "ABC", neither from Active Directory itself (Run: rundll32 dsquery.dll,OpenQueryWindow and tried the Advanced Search).
I used "%ABC%" and "*ABC*", but none works...
Any friendly way to search Outlook Exchange Global Address List with Wildcards ?
microsoft-outlook search exchange address-book wildcards
add a comment |
Our exchange GAL contains many group addresses, and it's hard to find a certain group contains for example "ABC".
In the Contacts tab in outlook there is no option to search for a name that contains "ABC", neither from Active Directory itself (Run: rundll32 dsquery.dll,OpenQueryWindow and tried the Advanced Search).
I used "%ABC%" and "*ABC*", but none works...
Any friendly way to search Outlook Exchange Global Address List with Wildcards ?
microsoft-outlook search exchange address-book wildcards
Our exchange GAL contains many group addresses, and it's hard to find a certain group contains for example "ABC".
In the Contacts tab in outlook there is no option to search for a name that contains "ABC", neither from Active Directory itself (Run: rundll32 dsquery.dll,OpenQueryWindow and tried the Advanced Search).
I used "%ABC%" and "*ABC*", but none works...
Any friendly way to search Outlook Exchange Global Address List with Wildcards ?
microsoft-outlook search exchange address-book wildcards
microsoft-outlook search exchange address-book wildcards
edited Sep 8 '13 at 11:20
Noam Manos
asked Sep 8 '13 at 11:14
Noam ManosNoam Manos
4991412
4991412
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
If you are doing a search using Active Directory tools, then the *
character is the one you would use for a wildcard, not %
. This comes from the LDAP directory search syntax.
But it looks to me like the search box available from dsquery.dll
only works correctly with a wildcard placed at the end of the string. So if you wanted to find groups with names beginning with "ABC" then you could search for them using:
ABC*
But searching using the following does not return any results:
*ABC*
This is a limitation of the dsquery.dll
user interface (the same as what you get to by using "Active Directory Users and Computers"). The underlying LDAP directory search API allows for a wildcard to be placed on either the beginning or the end.
If you really need this functionality, then you might want to try using PowerShell. It's a full-featured scripting language from Microsoft and can be hard to learn if you've never done any scripting before. But it will give you all the flexibility you need. It is also fairly easy to get started with if you install the PowerGUI tool from Quest.
For any questions on writing and using PowerShell cmdlets or scripts, you would probably want to post a follow-up question on Stack Overflow.
add a comment |
One Outlook addin you might want to check out is Company Contacts for Outlook. It provides a full text searchable global address book. Wild cards, search in specific column, sort and rearrange columns, quick actions, etc.
add a comment |
Just use the advanced search (contacts, search, search Tools - advanced search) or CTRL+SHIFT+F. You will be able to find all contacts you Need.
Advanced search does not search the GAL, at least not that I could find.
– kbolino
Jan 7 at 22:04
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f642518%2fhow-to-search-outlook-exchange-global-address-list-with-wildcards%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you are doing a search using Active Directory tools, then the *
character is the one you would use for a wildcard, not %
. This comes from the LDAP directory search syntax.
But it looks to me like the search box available from dsquery.dll
only works correctly with a wildcard placed at the end of the string. So if you wanted to find groups with names beginning with "ABC" then you could search for them using:
ABC*
But searching using the following does not return any results:
*ABC*
This is a limitation of the dsquery.dll
user interface (the same as what you get to by using "Active Directory Users and Computers"). The underlying LDAP directory search API allows for a wildcard to be placed on either the beginning or the end.
If you really need this functionality, then you might want to try using PowerShell. It's a full-featured scripting language from Microsoft and can be hard to learn if you've never done any scripting before. But it will give you all the flexibility you need. It is also fairly easy to get started with if you install the PowerGUI tool from Quest.
For any questions on writing and using PowerShell cmdlets or scripts, you would probably want to post a follow-up question on Stack Overflow.
add a comment |
If you are doing a search using Active Directory tools, then the *
character is the one you would use for a wildcard, not %
. This comes from the LDAP directory search syntax.
But it looks to me like the search box available from dsquery.dll
only works correctly with a wildcard placed at the end of the string. So if you wanted to find groups with names beginning with "ABC" then you could search for them using:
ABC*
But searching using the following does not return any results:
*ABC*
This is a limitation of the dsquery.dll
user interface (the same as what you get to by using "Active Directory Users and Computers"). The underlying LDAP directory search API allows for a wildcard to be placed on either the beginning or the end.
If you really need this functionality, then you might want to try using PowerShell. It's a full-featured scripting language from Microsoft and can be hard to learn if you've never done any scripting before. But it will give you all the flexibility you need. It is also fairly easy to get started with if you install the PowerGUI tool from Quest.
For any questions on writing and using PowerShell cmdlets or scripts, you would probably want to post a follow-up question on Stack Overflow.
add a comment |
If you are doing a search using Active Directory tools, then the *
character is the one you would use for a wildcard, not %
. This comes from the LDAP directory search syntax.
But it looks to me like the search box available from dsquery.dll
only works correctly with a wildcard placed at the end of the string. So if you wanted to find groups with names beginning with "ABC" then you could search for them using:
ABC*
But searching using the following does not return any results:
*ABC*
This is a limitation of the dsquery.dll
user interface (the same as what you get to by using "Active Directory Users and Computers"). The underlying LDAP directory search API allows for a wildcard to be placed on either the beginning or the end.
If you really need this functionality, then you might want to try using PowerShell. It's a full-featured scripting language from Microsoft and can be hard to learn if you've never done any scripting before. But it will give you all the flexibility you need. It is also fairly easy to get started with if you install the PowerGUI tool from Quest.
For any questions on writing and using PowerShell cmdlets or scripts, you would probably want to post a follow-up question on Stack Overflow.
If you are doing a search using Active Directory tools, then the *
character is the one you would use for a wildcard, not %
. This comes from the LDAP directory search syntax.
But it looks to me like the search box available from dsquery.dll
only works correctly with a wildcard placed at the end of the string. So if you wanted to find groups with names beginning with "ABC" then you could search for them using:
ABC*
But searching using the following does not return any results:
*ABC*
This is a limitation of the dsquery.dll
user interface (the same as what you get to by using "Active Directory Users and Computers"). The underlying LDAP directory search API allows for a wildcard to be placed on either the beginning or the end.
If you really need this functionality, then you might want to try using PowerShell. It's a full-featured scripting language from Microsoft and can be hard to learn if you've never done any scripting before. But it will give you all the flexibility you need. It is also fairly easy to get started with if you install the PowerGUI tool from Quest.
For any questions on writing and using PowerShell cmdlets or scripts, you would probably want to post a follow-up question on Stack Overflow.
answered Feb 14 '14 at 20:53
Shannon WagnerShannon Wagner
863720
863720
add a comment |
add a comment |
One Outlook addin you might want to check out is Company Contacts for Outlook. It provides a full text searchable global address book. Wild cards, search in specific column, sort and rearrange columns, quick actions, etc.
add a comment |
One Outlook addin you might want to check out is Company Contacts for Outlook. It provides a full text searchable global address book. Wild cards, search in specific column, sort and rearrange columns, quick actions, etc.
add a comment |
One Outlook addin you might want to check out is Company Contacts for Outlook. It provides a full text searchable global address book. Wild cards, search in specific column, sort and rearrange columns, quick actions, etc.
One Outlook addin you might want to check out is Company Contacts for Outlook. It provides a full text searchable global address book. Wild cards, search in specific column, sort and rearrange columns, quick actions, etc.
edited Jan 4 at 17:05
Andy Joiner
268216
268216
answered May 12 '18 at 3:51
MichaelMichael
111
111
add a comment |
add a comment |
Just use the advanced search (contacts, search, search Tools - advanced search) or CTRL+SHIFT+F. You will be able to find all contacts you Need.
Advanced search does not search the GAL, at least not that I could find.
– kbolino
Jan 7 at 22:04
add a comment |
Just use the advanced search (contacts, search, search Tools - advanced search) or CTRL+SHIFT+F. You will be able to find all contacts you Need.
Advanced search does not search the GAL, at least not that I could find.
– kbolino
Jan 7 at 22:04
add a comment |
Just use the advanced search (contacts, search, search Tools - advanced search) or CTRL+SHIFT+F. You will be able to find all contacts you Need.
Just use the advanced search (contacts, search, search Tools - advanced search) or CTRL+SHIFT+F. You will be able to find all contacts you Need.
answered Aug 27 '17 at 0:16
MadScientistMadScientist
1
1
Advanced search does not search the GAL, at least not that I could find.
– kbolino
Jan 7 at 22:04
add a comment |
Advanced search does not search the GAL, at least not that I could find.
– kbolino
Jan 7 at 22:04
Advanced search does not search the GAL, at least not that I could find.
– kbolino
Jan 7 at 22:04
Advanced search does not search the GAL, at least not that I could find.
– kbolino
Jan 7 at 22:04
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f642518%2fhow-to-search-outlook-exchange-global-address-list-with-wildcards%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown