{"id":47390,"date":"2019-11-25T16:07:42","date_gmt":"2019-11-25T16:07:42","guid":{"rendered":"https:\/\/www.stellarinfo.com\/blog\/?p=47390"},"modified":"2026-02-11T11:54:16","modified_gmt":"2026-02-11T11:54:16","slug":"export-global-address-list-gal-to-csv","status":"publish","type":"post","link":"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/","title":{"rendered":"How to Export Global Address List (GAL) to CSV?"},"content":{"rendered":"<?xml encoding=\"utf-8\" ?><?xml encoding=\"utf-8\" ?><p>You can export the Global Address List (GAL) to CSV file by using PowerShell commands in Exchange Management Shell or by using Outlook. However, these native methods have certain limitations. An effective and easy method to export the GAL is by using Stellar Converter for EDB &ndash; a specialized EDB to PST converter tool. In this post, we will explain how to use these methods to export Global Address List (GAL) to CSV file.<\/p><h2 class=\"wp-block-heading\" id=\"what-is-global-address-list-(gal)-in-exchange-server?\">What is Global Address List (GAL) in Exchange Server?<\/h2><p>Global Address List (GAL) is a central address book in Exchange Server, which serves as the primary directory for address book lookups in Outlook and other clients. It lists all mail-enabled objects in an organization, like users, groups, and resources along with their contact details. Clients such as Outlook use GAL to find names and email addresses for all email users.<\/p><h2 class=\"wp-block-heading\" id=\"methods-to-export-global-address-list-(gal)-to-csv\">Methods to Export Global Address List (GAL) to CSV<\/h2><p>You need to export the GAL to CSV for various purposes, such as migration to another platform, backing up the organization&rsquo;s contacts, enabling offline access, etc. Whatever be the reason, you can follow the methods mentioned below to export GAL to CSV.<\/p><ul class=\"wp-block-list\">\n<li>Export Global Address List (GAL) to CSV by using PowerShell<\/li>\n\n\n\n<li>Export Global Address List (GAL) to CSV via Outlook<\/li>\n\n\n\n<li>Export Global Address List (GAL) to CSV by using EDB to PST Converter Tool<\/li>\n<\/ul><h2 class=\"wp-block-heading\" id=\"how-to-export-global-address-list-(gal)-to-csv-by-using-powershell?\">How to Export Global Address List (GAL) to CSV by using PowerShell?<\/h2><p>You can use PowerShell commands in Exchange Management Shell (EMS) to export Global Address List (GAL) to CSV file. Let&rsquo;s take a look at the stepwise process.<\/p><p>First, you need to get the list of all the mailboxes. So, open the EMS as an administrator and then use the Get-Mailbox cmdlet to fetch the list of all mailboxes. By default, Exchange outputs 1000 mailboxes when you run this cmdlet. However, you can also increase or decrease the size of result, based on the number of mailboxes in your organization. In the below example, we are setting unlimited value for the resultsize parameter to display all the mailboxes.<\/p><pre class=\"wp-block-code command_container\"><code>get-mailbox -resultsize unlimited<\/code><\/pre><figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"602\" height=\"156\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/1-9.png\" alt=\"setting unlimited value for the resultsize parameter\" class=\"wp-image-190231 apply-gradient-on-post-images\" style=\"aspect-ratio:3.859260743263548;width:602px;height:auto\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/1-9.png 602w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/1-9-300x78.png 300w\" sizes=\"auto, (max-width: 602px) 100vw, 602px\" \/><\/figure><p>This command will list all the mailboxes, even those that are marked as hidden. If you open the mailbox from the Exchange Admin Center (EAC), you will find the &ldquo;Hide from address lists&rdquo; tick box enabled.<\/p><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"377\" height=\"162\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/2-6.png\" alt=\"tick box enabled Hide from address lists\" class=\"wp-image-190233 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/2-6.png 377w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/2-6-300x129.png 300w\" sizes=\"auto, (max-width: 377px) 100vw, 377px\" \/><\/figure><p>These mailboxes are system or notification mailboxes, which might not be needed. So, you can skip listing these mailboxes by adding an exception to the command:<\/p><pre class=\"wp-block-code command_container\"><code>get-mailbox -resultsize unlimited | ?{$_.HiddenFromAddressListsEnabled -eq $false}<\/code><\/pre><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"602\" height=\"89\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/3-4.png\" alt=\"skip listing these mailboxes\" class=\"wp-image-190234 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/3-4.png 602w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/3-4-300x44.png 300w\" sizes=\"auto, (max-width: 602px) 100vw, 602px\" \/><\/figure><p>In case, you want to list these hidden mailboxes, use the command as given below:<\/p><pre class=\"wp-block-code command_container\"><code>get-mailbox -resultsize unlimited<\/code><\/pre><p>The next part is to export all the necessary details from the mailboxes to get your address book by using the Get-User PowerShell cmdlet. After that, you can filter out the details needed by using the Select cmdlet. If you use the Get-User cmdlet alone, it will export all the details of mailboxes, like Object Category, Creation date, and other items that you wouldn&rsquo;t need in your export.<\/p><p>To fetch field names of your choice, you can use the Get-User | Select * command like this:<\/p><pre class=\"wp-block-code command_container\"><code>get-mailbox -resultsize unlimited | ?{$_.HiddenFromAddressListsEnabled -eq $false} | get-user | select *<\/code><\/pre><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"602\" height=\"199\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/4-4.png\" alt=\"fetch field names of your choice\" class=\"wp-image-190235 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/4-4.png 602w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/4-4-300x99.png 300w\" sizes=\"auto, (max-width: 602px) 100vw, 602px\" \/><\/figure><p>Once the criteria for export is ready, you can build the Select command to choose specific fields you need. In the example below, we are selecting Display Name, Work Phone, and Email Address. However, you can customize the Select command to add other fields such as department, alias, etc.<\/p><pre class=\"wp-block-code command_container\"><code>get-mailbox -resultsize unlimited | ?{$_.HiddenFromAddressListsEnabled -eq $false} | get-user | select DisplayName,Phone,WindowsEmailAddress<\/code><\/pre><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"602\" height=\"126\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/5-2.png\" alt=\"add other fields\" class=\"wp-image-190236 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/5-2.png 602w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/5-2-300x63.png 300w\" sizes=\"auto, (max-width: 602px) 100vw, 602px\" \/><\/figure><p>Lastly, export the results of the command to a CSV file. You can do this by using the Export-CSV &lt;destination path&gt; command (see the below example):<\/p><pre class=\"wp-block-code command_container\"><code>export-csv c:\\GAL-Export.csv<\/code><\/pre><p>Enclose the path in inverted commas. This prevents the command from failing. However, it has one issue&mdash;it exports a Type information row in your CSV. So, if you want to automate this process, you need to add a switch parameter to remove the first row.<\/p><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"329\" height=\"73\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/6-4.png\" alt=\"switch parameter to remove the first row\" class=\"wp-image-190237 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/6-4.png 329w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/6-4-300x67.png 300w\" sizes=\"auto, (max-width: 329px) 100vw, 329px\" \/><\/figure><p>In order to remove this row, you can add &ndash;NoTypeInformation at the end of the command:<\/p><pre class=\"wp-block-code command_container\"><code>Export-CSV c:\\GAL-Export.csv -NoTypeInformation<\/code><\/pre><p>Once you have all this settled and in place, you need to add all the steps together to export the whole address book as desired. The example below will export the Display Name, Work Phone, and Email Address for all users which are not hidden in the address book to a CSV in C:\\GAL-Export.csv.<\/p><pre class=\"wp-block-code command_container\"><code>Get-Mailbox -ResultSize Unlimited | ?{$_.HiddenFromAddressListsEnabled -eq $false} | Get-User | Select DisplayName,Phone,WindowsEmailAddress | Export-CSV c:\\GAL-Export.csv &ndash;NoTypeInformation<\/code><\/pre><figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"552\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/7-3-1024x552.png\" alt=\"GAL-Export.csv file format\" class=\"wp-image-190238 apply-gradient-on-post-images\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/7-3-1024x552.png 1024w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/7-3-300x162.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/7-3-768x414.png 768w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/7-3-1536x828.png 1536w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/7-3-1568x845.png 1568w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/7-3.png 1920w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure><p>One thing to note is that this command only works if your Exchange Server is in good working condition.<\/p><h2 class=\"wp-block-heading\" id=\"how-to-export-global-address-list-(gal)-to-csv-via-outlook?\">How to Export Global Address List (GAL) to CSV via Outlook?<\/h2><p>To export GAL via Outlook, you need to first move the GAL to a personal Contacts folder. Open the Address Book and select the list that contains the global address book copy (OAB).<\/p><figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"895\" height=\"613\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/8-2.png\" alt=\"Global Address List \" class=\"wp-image-190239 apply-gradient-on-post-images\" style=\"aspect-ratio:1.460048886474742;width:625px;height:auto\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/8-2.png 895w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/8-2-300x205.png 300w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/8-2-768x526.png 768w\" sizes=\"auto, (max-width: 895px) 100vw, 895px\" \/><\/figure><p>Select all the contacts you wish to export, right-click on the selection, and select <strong>Add to Contacts<\/strong>. After that, you can export these contacts to CSV file.<\/p><figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"561\" height=\"211\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/9-1.png\" alt=\"Select all the contacts you wish to export\" class=\"wp-image-190290 apply-gradient-on-post-images\" style=\"aspect-ratio:2.658890616899948;width:699px;height:auto\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/9-1.png 561w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/9-1-300x113.png 300w\" sizes=\"auto, (max-width: 561px) 100vw, 561px\" \/><\/figure><p>It is to be noted that OAB only includes visible entries, which means hidden mailboxes cannot be exported via Outlook. Another thing to consider is that exporting large number of contacts from Outlook can be very time-consuming. Such exports may noticeably degrade Outlook performance during the process.<\/p><h2 class=\"wp-block-heading\" id=\"how-to-export-global-address-list-(gal)-to-csv-by-using-an-edb-to-pst-converter-tool?\">How to Export Global Address List (GAL) to CSV by using an EDB to PST Converter Tool?<\/h2><p>The most effective and easiest method to export the GAL to CSV is by using Stellar Converter for EDB. This <a href=\"https:\/\/www.stellarinfo.com\/edb-to-pst-converter.php\">EDB to PST converter tool<\/a> allows to save the contacts to CSV file. All you need to do is run the tool, select <strong>offline EDB <\/strong>option, and open the EDB file.<\/p><figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"649\" height=\"211\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/10-1.png\" alt=\"open the EDB file\" class=\"wp-image-190291 apply-gradient-on-post-images\" style=\"aspect-ratio:3.0759831148633636;width:726px;height:auto\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/10-1.png 649w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/10-1-300x98.png 300w\" sizes=\"auto, (max-width: 649px) 100vw, 649px\" \/><\/figure><p>After that, go to Save Contacts under the Tools tab. You can then save the contacts in CSV file at a desired location.<\/p><figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"750\" height=\"824\" src=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/14-1.png\" alt=\"save the contacts in CSV file at a desired location\" class=\"wp-image-190287 apply-gradient-on-post-images\" style=\"aspect-ratio:0.910209731861797;width:439px;height:auto\" srcset=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/14-1.png 750w, https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/14-1-273x300.png 273w\" sizes=\"auto, (max-width: 750px) 100vw, 750px\" \/><\/figure><p><strong>Benefits of using Stellar Converter for EDB:<\/strong><\/p><ul class=\"wp-block-list\">\n<li>There is no need to use PowerShell and other complex commands to perform GAL to CSV export when using this tool.<\/li>\n\n\n\n<li>Besides exporting contact list to CSV, it also converts mailboxes to PSTs, which you can save for backup and archiving purposes.<\/li>\n\n\n\n<li>You can export the mailboxes directly to live Exchange Server or Microsoft 365 tenant.<\/li>\n<\/ul><h2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2><p>Above, we have explained how to export Global Address List (GAL) to CSV by using PowerShell commands and Outlook. However, these methods have some limitations. To overcome such limitations, you can use Stellar Converter for EDB &ndash; a professional EDB to PST converter tool that can help you export contacts from the EDB file to CSV in just a few simple steps. It works even when EDB file is offline or the server is not available.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>You can export the Global Address List (GAL) to CSV file by&hellip; <a class=\"more-link\" href=\"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/\">Continue reading <span class=\"screen-reader-text\">How to Export Global Address List (GAL) to CSV?<\/span><\/a><\/p>\n","protected":false},"author":17,"featured_media":47505,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[823],"tags":[],"class_list":["post-47390","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-edb-to-pst-converter","entry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to export Global Address List (GAL) to CSV (2026 Updated)<\/title>\n<meta name=\"description\" content=\"Methods to Export Global Address List (GAL) to CSV by using Exchange PowerShell, via Outlook, and by using EDB to PST Converter Tool.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to export Global Address List (GAL) to CSV (2026 Updated)\" \/>\n<meta property=\"og:description\" content=\"Methods to Export Global Address List (GAL) to CSV by using Exchange PowerShell, via Outlook, and by using EDB to PST Converter Tool.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/\" \/>\n<meta property=\"og:site_name\" content=\"Stellar Data Recovery Blog\" \/>\n<meta property=\"article:published_time\" content=\"2019-11-25T16:07:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-11T11:54:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/How-to-export-exchange-global-address-list-to-csv.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Shelly Bhardwaj\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Shelly Bhardwaj\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/\"},\"author\":{\"name\":\"Shelly Bhardwaj\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/560294d29c29906f1a494397d89ac5b5\"},\"headline\":\"How to Export Global Address List (GAL) to CSV?\",\"datePublished\":\"2019-11-25T16:07:42+00:00\",\"dateModified\":\"2026-02-11T11:54:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/\"},\"wordCount\":1081,\"commentCount\":3,\"image\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/How-to-export-exchange-global-address-list-to-csv.jpg\",\"articleSection\":[\"EDB to PST Converter\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/\",\"name\":\"How to export Global Address List (GAL) to CSV (2026 Updated)\",\"isPartOf\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/How-to-export-exchange-global-address-list-to-csv.jpg\",\"datePublished\":\"2019-11-25T16:07:42+00:00\",\"dateModified\":\"2026-02-11T11:54:16+00:00\",\"author\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/560294d29c29906f1a494397d89ac5b5\"},\"description\":\"Methods to Export Global Address List (GAL) to CSV by using Exchange PowerShell, via Outlook, and by using EDB to PST Converter Tool.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/#primaryimage\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/How-to-export-exchange-global-address-list-to-csv.jpg\",\"contentUrl\":\"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/How-to-export-exchange-global-address-list-to-csv.jpg\",\"width\":1000,\"height\":600},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.stellarinfo.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Export Global Address List (GAL) to CSV?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#website\",\"url\":\"https:\/\/www.stellarinfo.com\/blog\/\",\"name\":\"Stellar Data Recovery Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.stellarinfo.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/560294d29c29906f1a494397d89ac5b5\",\"name\":\"Shelly Bhardwaj\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/55b79705325614a5202bfcbe257c51b4bfd3229f8c27cd88856c412e9d171b8d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/55b79705325614a5202bfcbe257c51b4bfd3229f8c27cd88856c412e9d171b8d?s=96&d=mm&r=g\",\"caption\":\"Shelly Bhardwaj\"},\"description\":\"I am a Product Consultant and is associated with Stellar Data Recovery from last 8 years. I write about the latest technology tips and provide custom solutions related to Exchange Server, Office 365, MS Outlook, and many other Email Clients &amp; different flavors of OS Servers. Read More\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/shelly-bhardwaj\/\"],\"url\":\"https:\/\/www.stellarinfo.com\/blog\/author\/shelly\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to export Global Address List (GAL) to CSV (2026 Updated)","description":"Methods to Export Global Address List (GAL) to CSV by using Exchange PowerShell, via Outlook, and by using EDB to PST Converter Tool.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/","og_locale":"en_US","og_type":"article","og_title":"How to export Global Address List (GAL) to CSV (2026 Updated)","og_description":"Methods to Export Global Address List (GAL) to CSV by using Exchange PowerShell, via Outlook, and by using EDB to PST Converter Tool.","og_url":"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/","og_site_name":"Stellar Data Recovery Blog","article_published_time":"2019-11-25T16:07:42+00:00","article_modified_time":"2026-02-11T11:54:16+00:00","og_image":[{"width":1000,"height":600,"url":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/How-to-export-exchange-global-address-list-to-csv.jpg","type":"image\/jpeg"}],"author":"Shelly Bhardwaj","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Shelly Bhardwaj","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/#article","isPartOf":{"@id":"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/"},"author":{"name":"Shelly Bhardwaj","@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/560294d29c29906f1a494397d89ac5b5"},"headline":"How to Export Global Address List (GAL) to CSV?","datePublished":"2019-11-25T16:07:42+00:00","dateModified":"2026-02-11T11:54:16+00:00","mainEntityOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/"},"wordCount":1081,"commentCount":3,"image":{"@id":"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/How-to-export-exchange-global-address-list-to-csv.jpg","articleSection":["EDB to PST Converter"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/","url":"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/","name":"How to export Global Address List (GAL) to CSV (2026 Updated)","isPartOf":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/#primaryimage"},"image":{"@id":"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/#primaryimage"},"thumbnailUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/How-to-export-exchange-global-address-list-to-csv.jpg","datePublished":"2019-11-25T16:07:42+00:00","dateModified":"2026-02-11T11:54:16+00:00","author":{"@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/560294d29c29906f1a494397d89ac5b5"},"description":"Methods to Export Global Address List (GAL) to CSV by using Exchange PowerShell, via Outlook, and by using EDB to PST Converter Tool.","breadcrumb":{"@id":"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/#primaryimage","url":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/How-to-export-exchange-global-address-list-to-csv.jpg","contentUrl":"https:\/\/www.stellarinfo.com\/blog\/wp-content\/uploads\/2019\/11\/How-to-export-exchange-global-address-list-to-csv.jpg","width":1000,"height":600},{"@type":"BreadcrumbList","@id":"https:\/\/www.stellarinfo.com\/blog\/export-global-address-list-gal-to-csv\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.stellarinfo.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Export Global Address List (GAL) to CSV?"}]},{"@type":"WebSite","@id":"https:\/\/www.stellarinfo.com\/blog\/#website","url":"https:\/\/www.stellarinfo.com\/blog\/","name":"Stellar Data Recovery Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.stellarinfo.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/560294d29c29906f1a494397d89ac5b5","name":"Shelly Bhardwaj","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.stellarinfo.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/55b79705325614a5202bfcbe257c51b4bfd3229f8c27cd88856c412e9d171b8d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/55b79705325614a5202bfcbe257c51b4bfd3229f8c27cd88856c412e9d171b8d?s=96&d=mm&r=g","caption":"Shelly Bhardwaj"},"description":"I am a Product Consultant and is associated with Stellar Data Recovery from last 8 years. I write about the latest technology tips and provide custom solutions related to Exchange Server, Office 365, MS Outlook, and many other Email Clients &amp; different flavors of OS Servers. Read More","sameAs":["https:\/\/www.linkedin.com\/in\/shelly-bhardwaj\/"],"url":"https:\/\/www.stellarinfo.com\/blog\/author\/shelly\/"}]}},"_links":{"self":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/47390","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/users\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/comments?post=47390"}],"version-history":[{"count":27,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/47390\/revisions"}],"predecessor-version":[{"id":190295,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/posts\/47390\/revisions\/190295"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/media\/47505"}],"wp:attachment":[{"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/media?parent=47390"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/categories?post=47390"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.stellarinfo.com\/blog\/wp-json\/wp\/v2\/tags?post=47390"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}