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;
In Office 365 Exchange how does one obtain a list of existing dynamic distribution groups? Is power shell required?
exchange microsoft-office-365
add a comment |
In Office 365 Exchange how does one obtain a list of existing dynamic distribution groups? Is power shell required?
exchange microsoft-office-365
add a comment |
In Office 365 Exchange how does one obtain a list of existing dynamic distribution groups? Is power shell required?
exchange microsoft-office-365
In Office 365 Exchange how does one obtain a list of existing dynamic distribution groups? Is power shell required?
exchange microsoft-office-365
exchange microsoft-office-365
asked Jul 11 '16 at 12:51
leeand00leeand00
2,19864487
2,19864487
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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

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.
Using powershell, I'm able to get a list usingGet-DistributionGroupbut not usingGet-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 ranSet-ExecutionPolicy -ExecutionPolicy ByPassand then tried your powershell suggestion again, but I still don't end up with theGet-DynamicDistributionGroupI do however have aSet-DynamicDistributionGroup, I don't really want to use it though. I also received something about setting anAllowClobberparameter 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 theGet-DynamicDistributionGrouphas been deprecated byGet-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
|
show 1 more comment
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
add a comment |
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
);
);
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%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
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

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.
Using powershell, I'm able to get a list usingGet-DistributionGroupbut not usingGet-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 ranSet-ExecutionPolicy -ExecutionPolicy ByPassand then tried your powershell suggestion again, but I still don't end up with theGet-DynamicDistributionGroupI do however have aSet-DynamicDistributionGroup, I don't really want to use it though. I also received something about setting anAllowClobberparameter 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 theGet-DynamicDistributionGrouphas been deprecated byGet-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
|
show 1 more comment
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

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.
Using powershell, I'm able to get a list usingGet-DistributionGroupbut not usingGet-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 ranSet-ExecutionPolicy -ExecutionPolicy ByPassand then tried your powershell suggestion again, but I still don't end up with theGet-DynamicDistributionGroupI do however have aSet-DynamicDistributionGroup, I don't really want to use it though. I also received something about setting anAllowClobberparameter 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 theGet-DynamicDistributionGrouphas been deprecated byGet-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
|
show 1 more comment
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

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

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.
answered Jul 11 '16 at 13:13
Grigory SergeevGrigory Sergeev
611312
611312
Using powershell, I'm able to get a list usingGet-DistributionGroupbut not usingGet-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 ranSet-ExecutionPolicy -ExecutionPolicy ByPassand then tried your powershell suggestion again, but I still don't end up with theGet-DynamicDistributionGroupI do however have aSet-DynamicDistributionGroup, I don't really want to use it though. I also received something about setting anAllowClobberparameter 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 theGet-DynamicDistributionGrouphas been deprecated byGet-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
|
show 1 more comment
Using powershell, I'm able to get a list usingGet-DistributionGroupbut not usingGet-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 ranSet-ExecutionPolicy -ExecutionPolicy ByPassand then tried your powershell suggestion again, but I still don't end up with theGet-DynamicDistributionGroupI do however have aSet-DynamicDistributionGroup, I don't really want to use it though. I also received something about setting anAllowClobberparameter 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 theGet-DynamicDistributionGrouphas been deprecated byGet-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
|
show 1 more comment
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
add a comment |
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
add a comment |
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
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
edited Apr 19 at 11:51
Sven♦
88k10148202
88k10148202
answered Mar 27 at 13:03
Kathy CooperKathy Cooper
11
11
add a comment |
add a comment |
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.
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%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
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