Click here to Skip to main content
Licence CPOL
First Posted 8 Dec 2010
Views 5,066
Downloads 53
Bookmarked 2 times

Dynamic Distribution Group Viewer (Sharepoint 2010 Webpart)

By | 8 Dec 2010 | Article
Allows users to see who belongs to an exchange dynamic distribution group
 
Part of SharePoint Zone sponsored by
See Also

Introduction

Lots of organizations / companies use dynamic distribution groups in Exchange. While these groups allow for low administrative overhead, they don't allow users to know who the email is going to until the email has been sent. This Sharepoint webpart allows users to see who is in a group before the email is sent.

Using the Code

Before you begin, you must have the Exchange Management Console installed on your server. If you are planning to deploy this in Sharepoint, you will also need to edit your web.config to read:

<trust level="Full" originUrl="" />

In Visual Studio 2010, create a new Empty SharePoint Project. Add a new Visual Web Part Item. Add the System.Management.Automation reference to your project. Include the following 3 items in your using:

using System.Management.Automation;
using System.Management.Automation.Host;
using System.Management.Automation.Runspaces;

We need to open the Exchange management PowerShell snappin:

RunspaceConfiguration rsConfig = RunspaceConfiguration.Create();
PSSnapInException snapInException = null;
PSSnapInInfo info = rsConfig.AddPSSnapIn
("Microsoft.Exchange.Management.PowerShell.Admin", out snapInException);
Runspace myRunSpace = RunspaceFactory.CreateRunspace(rsConfig);
myRunSpace.Open();

Next, we need to send the cmdlet into powershell. In this case, I am asking to Get-DynamicDistributionGroup with the groupName being a variable I had the user select from a drop down.

Pipeline pipeLine = myRunSpace.CreatePipeline();
Command myCommand = new Command("Get-DynamicDistributionGroup");
CommandParameter identityParam = new CommandParameter("Identity", groupName);
myCommand.Parameters.Add(identityParam);
pipeLine.Commands.Add(myCommand);
Collection<PSObject> commandResults = pipeLine.Invoke();
PSObject distGroup = commandResults[0];
Runspace recipientRunSpace = RunspaceFactory.CreateRunspace(rsConfig);
recipientRunSpace.Open();

Once we have the Dynamic Distribution Group's Name, we need its recipients.

pipeLine = recipientRunSpace.CreatePipeline();
myCommand = new Command("Get-Recipient");
if (distGroup.Members["RecipientFilter"] != null && 
distGroup.Members["RecipientFilter"].Value.ToString().Length > 0)
   {
      CommandParameter recipientFilter = new CommandParameter
     ("RecipientPreviewFilter", distGroup.Members["RecipientFilter"].Value);
      myCommand.Parameters.Add(recipientFilter);
   }
CommandParameter OU = new CommandParameter("OrganizationalUnit", distGroup.Members
["RecipientContainer"].Value.ToString());
myCommand.Parameters.Add(OU);
pipeLine.Commands.Add(myCommand);
commandResults = pipeLine.Invoke();

Next, I build a list of all the user's names from that group. The list of names is then bound to a bulleted List.

List<string> nameList = new List<string>();
foreach (PSObject cmdlet in commandResults)
      {
         if (cmdlet.Properties["Name"] != null && 
         cmdlet.Properties["Name"].Value.ToString().Length > 0)
           {
             string recipientName = cmdlet.Properties["Name"].Value.ToString();
              nameList.Add(recipientName);
           }
      }
                
BulletedList1.DataSource = nameList;
BulletedList1.DataBind();

The last thing I did was change the DisplayMode of the bulleted list to LinkButton. This makes the user's names hyperlinks which go to the Sharepoint MySite page.

protected void BulletedList1_Click(object sender, BulletedListEventArgs e)
{
    ListItem li = BulletedList1.Items[e.Index];
    Response.Redirect("http://sharepoint peoplesearch URL" 
    + BulletedList1.Items[e.Index].Text);
}

History

  • 8th December, 2010: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Matt Kloss

Web Developer

United States United States

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalthanks for sharing - have 5 PinmemberPranay Rana0:57 17 Jan '11  
GeneralOk but... PinmvpMark Nischalke13:52 8 Dec '10  
GeneralRe: Ok but... PinmemberMatt Kloss15:19 8 Dec '10  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 8 Dec 2010
Article Copyright 2010 by Matt Kloss
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid