Get the list of authorized senders to a distribution list in Exc 2007
Get the list of authorized senders to a distribution list in Exc 2007
December 26th, 2011 1:42am

You may use Get-distributiongroup -identity "DLName" | fl to get the results. Or use Get-distributiongroup -identity "DLName" | fl AcceptMessagesOnlyFrom >c:\members.txt to output to txt file.
Free Windows Admin Tool Kit Click here and download it now
December 26th, 2011 1:23pm

thanks for reply but all user name is not coming.... any other way or script....
December 27th, 2011 12:22am

Hi Abhishek, If no user occurs, it means that all users have permission to send emails to this distribution group. You can try the following: Get-DistributionGroup –Identity "DLname" | fl name,accept* As you can see the AcceptMessagesOnlyFrom attribute lists individual authorized senders, and the AcceptMessagesOnlyFromDLMembers attribute lists distribution lists that are authorized senders, and then both are shown in the AcceptMessagesOnlyFromSendersOrMembers attribute. Hope it helps. If you encounter any difficulties, please let us know. ThanksSophia Xu TechNet Community Support
Free Windows Admin Tool Kit Click here and download it now
December 27th, 2011 9:49pm

Hi, I have run the command as per above but same result after Employee Communications IT... ,name is not coming. Any other command....??
December 27th, 2011 11:06pm

got the command to Export “Only sender in the following list” detail by below command: (Get-DistributionGroup -Identity "AllinCPD1").AcceptMessagesOnlyFrom | ForEach {Write-Host $_.Name} and it's working Thanks Abhishek
Free Windows Admin Tool Kit Click here and download it now
December 28th, 2011 11:04pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics