How do I get a list of Dynamic Distribution Groups in Office 365?Exchange 2007 migration to Office 365Exchange Online Powershell Dynamic Dist. List of ContactsOffice 365 Distribution Group Sender Receives Copy of Group EmailRestrict duplication of Alias name while creating a distribution list using Exchange commandsOffice 365 Exchange shared contactsCan Exchange Online Utilize Active Directory Distribution Groups AutomaticallyCross forest Office 365 MigrationDistribution list upgrade/Outlook Public Folder Permissions (Office 365)Does functional level of Exchange 2010 based Hybrid Office 365 migration remain after fully cutting over to Office 365?Updating Group objects directly in Office 365 Portal instead of On-Premises Active Directory

Is Diceware more secure than a long passphrase?

Dynamic SOQL query relationship with field visibility for Users

Is it idiomatic to construct against `this`

Does tea made with boiling water cool faster than tea made with boiled (but still hot) water?

How exactly does Hawking radiation decrease the mass of black holes?

Map of water taps to fill bottles

Retract an already submitted recommendation letter (written for an undergrad student)

Check if a string is entirely made of the same substring

Is there really no use for MD5 anymore?

Converting a sprinkler system's 24V AC outputs to 3.3V DC logic inputs

How come there are so many candidates for the 2020 Democratic party presidential nomination?

'It addicted me, with one taste.' Can 'addict' be used transitively?

How did Captain America manage to do this?

What happens to Mjolnir (Thor's hammer) at the end of Endgame?

Pulling the rope with one hand is as heavy as with two hands?

How can Republicans who favour free markets, consistently express anger when they don't like the outcome of that choice?

Elements that can bond to themselves?

Why was the Spitfire's elliptical wing almost uncopied by other aircraft of World War 2?

Is there any official lore on the Far Realm?

Overlay of two functions leaves gaps

Function pointer with named arguments?

Is the claim "Employers won't employ people with no 'social media presence'" realistic?

How does Captain America channel this power?

Why does Mind Blank stop the Feeblemind spell?



How do I get a list of Dynamic Distribution Groups in Office 365?


Exchange 2007 migration to Office 365Exchange Online Powershell Dynamic Dist. List of ContactsOffice 365 Distribution Group Sender Receives Copy of Group EmailRestrict duplication of Alias name while creating a distribution list using Exchange commandsOffice 365 Exchange shared contactsCan Exchange Online Utilize Active Directory Distribution Groups AutomaticallyCross forest Office 365 MigrationDistribution list upgrade/Outlook Public Folder Permissions (Office 365)Does functional level of Exchange 2010 based Hybrid Office 365 migration remain after fully cutting over to Office 365?Updating Group objects directly in Office 365 Portal instead of On-Premises Active Directory






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








2















In Office 365 Exchange how does one obtain a list of existing dynamic distribution groups? Is power shell required?










share|improve this question




























    2















    In Office 365 Exchange how does one obtain a list of existing dynamic distribution groups? Is power shell required?










    share|improve this question
























      2












      2








      2








      In Office 365 Exchange how does one obtain a list of existing dynamic distribution groups? Is power shell required?










      share|improve this question














      In Office 365 Exchange how does one obtain a list of existing dynamic distribution groups? Is power shell required?







      exchange microsoft-office-365






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jul 11 '16 at 12:51









      leeand00leeand00

      2,19864487




      2,19864487




















          2 Answers
          2






          active

          oldest

          votes


















          2














          You can see your groups via web UI:
          Exchange admin center -> recipients -> groups
          Then you need to search -> advanced search
          provide recipient types "Dynamic distribution groups" and OK it



          enter image description here



          Powershell is not required, but is a good option:
          You need to connect to Exchange Online session as per Microsoft Technet article.



          Supply your Office365 admin user credentials:
          $UserCredential = Get-Credential



          Then create a session(one line):
          $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection



          And finally Import-PSSession $Session



          When connected issue Get-DynamicDistributionGroup which will give you the list.






          share|improve this answer























          • Using powershell, I'm able to get a list using Get-DistributionGroup but not using Get-DynamicDistributionGroup, as that command does not exist when I try to use it.

            – leeand00
            Jul 15 '16 at 13:01






          • 1





            Make sure there is no error when you connect to office 365 session. I think you might miss some cmdlets if you have PowerShell execution policy set too restricted.

            – Grigory Sergeev
            Jul 15 '16 at 13:05











          • I ran Set-ExecutionPolicy -ExecutionPolicy ByPass and then tried your powershell suggestion again, but I still don't end up with the Get-DynamicDistributionGroup I do however have a Set-DynamicDistributionGroup, I don't really want to use it though. I also received something about setting an AllowClobber parameter when importing them, and then a bunch of commands that I assume are local and that importing them would use a proxy to call it remotely instead of the local ones.

            – leeand00
            Jul 15 '16 at 15:16











          • Is it possible that the Get-DynamicDistributionGroup has been deprecated by Get-DistributionGroup?

            – leeand00
            Jul 15 '16 at 15:20






          • 1





            Okay, it seems you already have Exchange powershell module on the machine where you run this session. AllowClobber would allow to merge modules, if I'm not mistaken. I would suggest you follow the article's section "What do you need to know before you begin?" to avoid any confusion. Dynamic Distribution Groups wouldn't deprecate regular DGs.

            – Grigory Sergeev
            Jul 15 '16 at 15:22


















          0














          You can use Exchange admin center to view all available dynamic distribution group. else you can use below PowerShell commands.



          $Credential=Get-Credential -Credential $null 
          $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $Credential -Authentication Basic -AllowRedirection
          Import-PSSession $Session -AllowClobber
          Get-DynamicDistributionGroup


          viewing members of a Dynamic Distribution Group are not feasible in the Office 365 Admin Portal.PowerShell is the only way to view members.



          https://gallery.technet.microsoft.com/Export-Office-365-Dynamic-7f66e229






          share|improve this answer

























            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "2"
            ;
            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
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f789137%2fhow-do-i-get-a-list-of-dynamic-distribution-groups-in-office-365%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            2














            You can see your groups via web UI:
            Exchange admin center -> recipients -> groups
            Then you need to search -> advanced search
            provide recipient types "Dynamic distribution groups" and OK it



            enter image description here



            Powershell is not required, but is a good option:
            You need to connect to Exchange Online session as per Microsoft Technet article.



            Supply your Office365 admin user credentials:
            $UserCredential = Get-Credential



            Then create a session(one line):
            $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection



            And finally Import-PSSession $Session



            When connected issue Get-DynamicDistributionGroup which will give you the list.






            share|improve this answer























            • Using powershell, I'm able to get a list using Get-DistributionGroup but not using Get-DynamicDistributionGroup, as that command does not exist when I try to use it.

              – leeand00
              Jul 15 '16 at 13:01






            • 1





              Make sure there is no error when you connect to office 365 session. I think you might miss some cmdlets if you have PowerShell execution policy set too restricted.

              – Grigory Sergeev
              Jul 15 '16 at 13:05











            • I ran Set-ExecutionPolicy -ExecutionPolicy ByPass and then tried your powershell suggestion again, but I still don't end up with the Get-DynamicDistributionGroup I do however have a Set-DynamicDistributionGroup, I don't really want to use it though. I also received something about setting an AllowClobber parameter when importing them, and then a bunch of commands that I assume are local and that importing them would use a proxy to call it remotely instead of the local ones.

              – leeand00
              Jul 15 '16 at 15:16











            • Is it possible that the Get-DynamicDistributionGroup has been deprecated by Get-DistributionGroup?

              – leeand00
              Jul 15 '16 at 15:20






            • 1





              Okay, it seems you already have Exchange powershell module on the machine where you run this session. AllowClobber would allow to merge modules, if I'm not mistaken. I would suggest you follow the article's section "What do you need to know before you begin?" to avoid any confusion. Dynamic Distribution Groups wouldn't deprecate regular DGs.

              – Grigory Sergeev
              Jul 15 '16 at 15:22















            2














            You can see your groups via web UI:
            Exchange admin center -> recipients -> groups
            Then you need to search -> advanced search
            provide recipient types "Dynamic distribution groups" and OK it



            enter image description here



            Powershell is not required, but is a good option:
            You need to connect to Exchange Online session as per Microsoft Technet article.



            Supply your Office365 admin user credentials:
            $UserCredential = Get-Credential



            Then create a session(one line):
            $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection



            And finally Import-PSSession $Session



            When connected issue Get-DynamicDistributionGroup which will give you the list.






            share|improve this answer























            • Using powershell, I'm able to get a list using Get-DistributionGroup but not using Get-DynamicDistributionGroup, as that command does not exist when I try to use it.

              – leeand00
              Jul 15 '16 at 13:01






            • 1





              Make sure there is no error when you connect to office 365 session. I think you might miss some cmdlets if you have PowerShell execution policy set too restricted.

              – Grigory Sergeev
              Jul 15 '16 at 13:05











            • I ran Set-ExecutionPolicy -ExecutionPolicy ByPass and then tried your powershell suggestion again, but I still don't end up with the Get-DynamicDistributionGroup I do however have a Set-DynamicDistributionGroup, I don't really want to use it though. I also received something about setting an AllowClobber parameter when importing them, and then a bunch of commands that I assume are local and that importing them would use a proxy to call it remotely instead of the local ones.

              – leeand00
              Jul 15 '16 at 15:16











            • Is it possible that the Get-DynamicDistributionGroup has been deprecated by Get-DistributionGroup?

              – leeand00
              Jul 15 '16 at 15:20






            • 1





              Okay, it seems you already have Exchange powershell module on the machine where you run this session. AllowClobber would allow to merge modules, if I'm not mistaken. I would suggest you follow the article's section "What do you need to know before you begin?" to avoid any confusion. Dynamic Distribution Groups wouldn't deprecate regular DGs.

              – Grigory Sergeev
              Jul 15 '16 at 15:22













            2












            2








            2







            You can see your groups via web UI:
            Exchange admin center -> recipients -> groups
            Then you need to search -> advanced search
            provide recipient types "Dynamic distribution groups" and OK it



            enter image description here



            Powershell is not required, but is a good option:
            You need to connect to Exchange Online session as per Microsoft Technet article.



            Supply your Office365 admin user credentials:
            $UserCredential = Get-Credential



            Then create a session(one line):
            $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection



            And finally Import-PSSession $Session



            When connected issue Get-DynamicDistributionGroup which will give you the list.






            share|improve this answer













            You can see your groups via web UI:
            Exchange admin center -> recipients -> groups
            Then you need to search -> advanced search
            provide recipient types "Dynamic distribution groups" and OK it



            enter image description here



            Powershell is not required, but is a good option:
            You need to connect to Exchange Online session as per Microsoft Technet article.



            Supply your Office365 admin user credentials:
            $UserCredential = Get-Credential



            Then create a session(one line):
            $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection



            And finally Import-PSSession $Session



            When connected issue Get-DynamicDistributionGroup which will give you the list.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Jul 11 '16 at 13:13









            Grigory SergeevGrigory Sergeev

            611312




            611312












            • Using powershell, I'm able to get a list using Get-DistributionGroup but not using Get-DynamicDistributionGroup, as that command does not exist when I try to use it.

              – leeand00
              Jul 15 '16 at 13:01






            • 1





              Make sure there is no error when you connect to office 365 session. I think you might miss some cmdlets if you have PowerShell execution policy set too restricted.

              – Grigory Sergeev
              Jul 15 '16 at 13:05











            • I ran Set-ExecutionPolicy -ExecutionPolicy ByPass and then tried your powershell suggestion again, but I still don't end up with the Get-DynamicDistributionGroup I do however have a Set-DynamicDistributionGroup, I don't really want to use it though. I also received something about setting an AllowClobber parameter when importing them, and then a bunch of commands that I assume are local and that importing them would use a proxy to call it remotely instead of the local ones.

              – leeand00
              Jul 15 '16 at 15:16











            • Is it possible that the Get-DynamicDistributionGroup has been deprecated by Get-DistributionGroup?

              – leeand00
              Jul 15 '16 at 15:20






            • 1





              Okay, it seems you already have Exchange powershell module on the machine where you run this session. AllowClobber would allow to merge modules, if I'm not mistaken. I would suggest you follow the article's section "What do you need to know before you begin?" to avoid any confusion. Dynamic Distribution Groups wouldn't deprecate regular DGs.

              – Grigory Sergeev
              Jul 15 '16 at 15:22

















            • Using powershell, I'm able to get a list using Get-DistributionGroup but not using Get-DynamicDistributionGroup, as that command does not exist when I try to use it.

              – leeand00
              Jul 15 '16 at 13:01






            • 1





              Make sure there is no error when you connect to office 365 session. I think you might miss some cmdlets if you have PowerShell execution policy set too restricted.

              – Grigory Sergeev
              Jul 15 '16 at 13:05











            • I ran Set-ExecutionPolicy -ExecutionPolicy ByPass and then tried your powershell suggestion again, but I still don't end up with the Get-DynamicDistributionGroup I do however have a Set-DynamicDistributionGroup, I don't really want to use it though. I also received something about setting an AllowClobber parameter when importing them, and then a bunch of commands that I assume are local and that importing them would use a proxy to call it remotely instead of the local ones.

              – leeand00
              Jul 15 '16 at 15:16











            • Is it possible that the Get-DynamicDistributionGroup has been deprecated by Get-DistributionGroup?

              – leeand00
              Jul 15 '16 at 15:20






            • 1





              Okay, it seems you already have Exchange powershell module on the machine where you run this session. AllowClobber would allow to merge modules, if I'm not mistaken. I would suggest you follow the article's section "What do you need to know before you begin?" to avoid any confusion. Dynamic Distribution Groups wouldn't deprecate regular DGs.

              – Grigory Sergeev
              Jul 15 '16 at 15:22
















            Using powershell, I'm able to get a list using Get-DistributionGroup but not using Get-DynamicDistributionGroup, as that command does not exist when I try to use it.

            – leeand00
            Jul 15 '16 at 13:01





            Using powershell, I'm able to get a list using Get-DistributionGroup but not using Get-DynamicDistributionGroup, as that command does not exist when I try to use it.

            – leeand00
            Jul 15 '16 at 13:01




            1




            1





            Make sure there is no error when you connect to office 365 session. I think you might miss some cmdlets if you have PowerShell execution policy set too restricted.

            – Grigory Sergeev
            Jul 15 '16 at 13:05





            Make sure there is no error when you connect to office 365 session. I think you might miss some cmdlets if you have PowerShell execution policy set too restricted.

            – Grigory Sergeev
            Jul 15 '16 at 13:05













            I ran Set-ExecutionPolicy -ExecutionPolicy ByPass and then tried your powershell suggestion again, but I still don't end up with the Get-DynamicDistributionGroup I do however have a Set-DynamicDistributionGroup, I don't really want to use it though. I also received something about setting an AllowClobber parameter when importing them, and then a bunch of commands that I assume are local and that importing them would use a proxy to call it remotely instead of the local ones.

            – leeand00
            Jul 15 '16 at 15:16





            I ran Set-ExecutionPolicy -ExecutionPolicy ByPass and then tried your powershell suggestion again, but I still don't end up with the Get-DynamicDistributionGroup I do however have a Set-DynamicDistributionGroup, I don't really want to use it though. I also received something about setting an AllowClobber parameter when importing them, and then a bunch of commands that I assume are local and that importing them would use a proxy to call it remotely instead of the local ones.

            – leeand00
            Jul 15 '16 at 15:16













            Is it possible that the Get-DynamicDistributionGroup has been deprecated by Get-DistributionGroup?

            – leeand00
            Jul 15 '16 at 15:20





            Is it possible that the Get-DynamicDistributionGroup has been deprecated by Get-DistributionGroup?

            – leeand00
            Jul 15 '16 at 15:20




            1




            1





            Okay, it seems you already have Exchange powershell module on the machine where you run this session. AllowClobber would allow to merge modules, if I'm not mistaken. I would suggest you follow the article's section "What do you need to know before you begin?" to avoid any confusion. Dynamic Distribution Groups wouldn't deprecate regular DGs.

            – Grigory Sergeev
            Jul 15 '16 at 15:22





            Okay, it seems you already have Exchange powershell module on the machine where you run this session. AllowClobber would allow to merge modules, if I'm not mistaken. I would suggest you follow the article's section "What do you need to know before you begin?" to avoid any confusion. Dynamic Distribution Groups wouldn't deprecate regular DGs.

            – Grigory Sergeev
            Jul 15 '16 at 15:22













            0














            You can use Exchange admin center to view all available dynamic distribution group. else you can use below PowerShell commands.



            $Credential=Get-Credential -Credential $null 
            $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $Credential -Authentication Basic -AllowRedirection
            Import-PSSession $Session -AllowClobber
            Get-DynamicDistributionGroup


            viewing members of a Dynamic Distribution Group are not feasible in the Office 365 Admin Portal.PowerShell is the only way to view members.



            https://gallery.technet.microsoft.com/Export-Office-365-Dynamic-7f66e229






            share|improve this answer





























              0














              You can use Exchange admin center to view all available dynamic distribution group. else you can use below PowerShell commands.



              $Credential=Get-Credential -Credential $null 
              $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $Credential -Authentication Basic -AllowRedirection
              Import-PSSession $Session -AllowClobber
              Get-DynamicDistributionGroup


              viewing members of a Dynamic Distribution Group are not feasible in the Office 365 Admin Portal.PowerShell is the only way to view members.



              https://gallery.technet.microsoft.com/Export-Office-365-Dynamic-7f66e229






              share|improve this answer



























                0












                0








                0







                You can use Exchange admin center to view all available dynamic distribution group. else you can use below PowerShell commands.



                $Credential=Get-Credential -Credential $null 
                $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $Credential -Authentication Basic -AllowRedirection
                Import-PSSession $Session -AllowClobber
                Get-DynamicDistributionGroup


                viewing members of a Dynamic Distribution Group are not feasible in the Office 365 Admin Portal.PowerShell is the only way to view members.



                https://gallery.technet.microsoft.com/Export-Office-365-Dynamic-7f66e229






                share|improve this answer















                You can use Exchange admin center to view all available dynamic distribution group. else you can use below PowerShell commands.



                $Credential=Get-Credential -Credential $null 
                $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $Credential -Authentication Basic -AllowRedirection
                Import-PSSession $Session -AllowClobber
                Get-DynamicDistributionGroup


                viewing members of a Dynamic Distribution Group are not feasible in the Office 365 Admin Portal.PowerShell is the only way to view members.



                https://gallery.technet.microsoft.com/Export-Office-365-Dynamic-7f66e229







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Apr 19 at 11:51









                Sven

                88k10148202




                88k10148202










                answered Mar 27 at 13:03









                Kathy CooperKathy Cooper

                11




                11



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Server Fault!


                    • 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.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f789137%2fhow-do-i-get-a-list-of-dynamic-distribution-groups-in-office-365%23new-answer', 'question_page');

                    );

                    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







                    Popular posts from this blog

                    How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

                    What if the end-user didn't have the required library?What is setup.py?What is a clean, pythonic way to have multiple constructors in Python?What does Ruby have that Python doesn't, and vice versa?What is the reason for having '//' in Python?How do I create a namespace package in Python?How to package shared objects that python modules depend on?setuptools vs. distutils: why is distutils still a thing?Navigation in Windows 10 vs code not going to virtualenv library when the same library is installed at user levelPython create package for local usePackaging a project that uses multiple python versionsWhy is permission denied on pip install except for when “--user” is included at end of command?

                    Esgonzo ibérico Índice Descrición Distribución Hábitat Ameazas Notas Véxase tamén "Acerca dos nomes dos anfibios e réptiles galegos""Chalcides bedriagai"Chalcides bedriagai en Carrascal, L. M. Salvador, A. (Eds). Enciclopedia virtual de los vertebrados españoles. Museo Nacional de Ciencias Naturales, Madrid. España.Fotos