Questions tagged [gal]

Global Address List (GAL) is a directory service within the Microsoft Exchange email system.

The Global Address List (GAL) also known as Microsoft Exchange Global Address Book is a directory service within the Microsoft Exchange email system. The GAL contains information for all email users, distribution groups, and Exchange resources.

53 questions
0
votes
2 answers

Faster search of email in GAL using Python

I need to create a Python script which grabs different information about 1500 Outlook Contacts (out of 20000), based on their email. Until now, I managed to do this: def grab_user_details(email): first_name, last_name, department, location = '',…
0
votes
1 answer

VBA to Open Global Address List no longer functioning after Office 365 update

I'm using the below code to open the Global Address Window, but since updating to Office 365 it is no longer opening. I have done many searches online but can't find anyone experiencing the same issue. Can anyone assist? CODE: Dim cdoSession,…
0
votes
1 answer

Can I export outlook address book to csv as a common user?

I am not exchange admin but just a common user. I believe we are using Exchange 2019 and the address book (is it called GAL?) is saved in server side. I can open and search it via my Outlook interface. Beside Outlook program I have access to…
Mark
  • 283
  • 3
  • 22
0
votes
1 answer

How to retrieve email address from 'user.GetDirectReports()'?

Below lines are used to retrieve a given person's (by email address) line manager's email address: import win32com.client outlook = win32com.client.Dispatch("Outlook.Application").GetNamespace("MAPI") gal =…
Mark K
  • 8,767
  • 14
  • 58
  • 118
0
votes
1 answer

How to get GAL id and use FindPeople with use of Microsoft.Exchange.WebServices

I'd like to request help with the following problems: Using: c#, Microsoft.Exchange.WebServices, ExchangeServer 2013 SP1 Is it possible to get id of GAL by the use of c# + Microsoft.Exchange.WebServices ? The only possibility I have found is that I…
Luqpa
  • 47
  • 1
  • 2
0
votes
1 answer

How does one query the GAL from powershell by job title?

I'm reading a document at work that involves a bunch of position titles, but I don't know who the people actually are, I only know their job titles. I know this information is available in the Global Address Book, but I don't know how to put in a…
leeand00
  • 25,510
  • 39
  • 140
  • 297
0
votes
1 answer

Alternative to Lattice's GAL and ispGAL chips

I took a class last semester about programming with embedded hardware, mainly using GAl chips from Lattice and ABEL to program them. I'd like to continue this for fun outside of the class, but I find things to be cost prohibitive due to the high…
samoz
  • 56,849
  • 55
  • 141
  • 195
0
votes
1 answer

How to query the GAL using SQL

I am looking for code to query the Global Address List (GAL) to obtain contacts email. I'm able to do this using VBA code. However, I was wondering if it's possible to do the same using SQL code. Also, I thinking about using SSIS package to pull…
Green
  • 695
  • 2
  • 9
  • 21
0
votes
1 answer

LDAP filter to exclude admins group from GAL (on Zimbra)

I'm trying to set up an external active directory GAL on zimbra 8.8.7; My current working filter…
gibengy
  • 13
  • 5
0
votes
1 answer

How to read and open gal file from a selected path in my pc?

I used python code to analyse my data. But when I wanted to read the gal file I got error. w = pd.read_gal("C:\\Users\\Yousif\\Downloads\\PythonSpatial\\statess7.gal") AttributeError Traceback (most recent call last) …
yousif
  • 23
  • 1
  • 4
0
votes
1 answer

Using ctypes with GSL to pass array

According to the GSL documentation, the signature of is: double gsl_stats_correlation (const double data1[], const size_t stride1, const double data2[], …
garyrob
  • 568
  • 7
  • 17
0
votes
1 answer

How to access Exchange GAL MailContact property Notes using EWS Managed API?

I am trying to programically access Exchange Global Address List Contact property called Notes (like here -> GAL Contact - Notes ). I am using EWS Managed API in my Visual Studio (C# programming language) application. I think the logic of my code is…
Mato Skok
  • 29
  • 1
  • 8
0
votes
1 answer

VBA search specific user in Outlook GAL

I want to search a specific user (e.g. Clinton, Bill) in the GAL and get all the information like e-mail address, phone, street etc. in Excel. How do I do that in VBA?
Metabinary
  • 171
  • 1
  • 2
  • 11
0
votes
1 answer

Add members to Outlook GAL Distribution List using C# in a Console app

I'm trying to write a C# console app that can programmatically update an Outlook distribution list (DL) in the Global Address List (GAL). I have permission to update this DL. I can do it interactively on my PC using Outlook, and I can do it in…
jimtut
  • 2,366
  • 2
  • 16
  • 37
0
votes
1 answer

Windows Store App with powershell

I am developing a windows 8.1 store app and in that i want to get the GAL and add the GAL by using power shell script. When i tried to add the referance to System.Security.SecurityString it is giving an errors like follows.. I am trying to…