|
On the "My site" feature of Sharepoint there is a "memberships" Web part that shows the distribution list that the user is a member of.
This is picking up several groups that we would rather not be shown e.g. some that have been set up for administrative...
Started by wefwfwefwe on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Easy fix: add a JavaScript (any user with access to creating... .
Name>
You could try editing the Distribution List on the Exchange Advanced tab, selecting the Distribution List from appearing the the list of groups.
|
|
How can I add and remove members to a distribution list in a public folder through PowerShell?
This is for Exchange 2007.
Started by Even Mien on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Add-DistributionGroupMember -Identity "Marketing Managers" -Member adam@contoso.com
From here: http://technet.microsoft.com/en-us/library/aa995970.aspx
Pretty much the same for Removing:
but use Remove-DistributionGroupMember instead
If you mean a mail... .
|
|
In Exchange, I can create a distribution list and give that distribution list a specific email address. For instance, I have a domain - rodey.com and want to create a distribution list called "Drinking Buddies" and I want it to have the email address ...
Answer Snippets (Read the full thread at superuser):
I believe that should ....
Then click on the 'Users and Groups' tab, and then the 'Groups' sub-tab, and then click 'Create a new group' .
Click on 'Manage This Domain' at the top of your email screen .
To do this in Google Apps, you want to set up a Group .
|
Ask your Facebook Friends
|
I need to send an email to an Exchange distribution list called "DL-IT" using c#.
Does anyone know how to acheive this?
Started by Calanus on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Exchange distribution....
The constructor call will fail if you just pass in the name of the distribution list "To:" field.
Address of the distribution list (manually) and use that as the "to" address on the MailMessage constructor.
|
|
How do I export all of the names and email addresses from a distribution list in Outlook using code? I have access to an Outlook 2000 or Outlook 2007 client. Ideally I would like the code to be in C#.
Started by BrianLy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Use outlook component model http://www.dotnetjunkies.ddj.com/Tutorial/2E1EEEAF-C78A-4A38-A830-AC204B12DF83.dcik
I realize you asked about c#, but the following script from http://www.microsoft.com/technet/scriptcenter/resources/officetips/may05/tips0... .
|
|
We need to remotely create an Exchange 2007 distribution list from Asp.Net.
Near as I can tell, the only way to create a distribution list in the GAL is via the exchange management tools. Without installing this on our web server, is there any way to ...
Started by Darren on
, 5 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
A new list using AD and it seems to be working (this is the equivalent of 'new-DistributionGroup.
|
|
A client of mine is at a conference, and someone there spoke to him about something he called "Distribution list mirroring" - something to the effect of automatically copying emails up to a SharePoint discussion thread. That way, people can subscribe ...
Started by Greg Hurlman on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
As mentioned....
You just assign an incoming email address, and then you can cc that address on any email discussions threads .
With an email address Add the email address to the distribution group Watch email roll into the document Discussion List.
|
|
Hi,
I have a very odd problem that I'm not sure is a programming issue or a server issue :-p.
Basically I'm sending an email to an exchange distribution list that includes a PHP stack trace; during certain faults the trace includes really high level information...
Started by widgisoft on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
If messages to you and the list address were split at some stage before group expansion.
|
|
I need to read records containing name and email from a file or database and add them to an existing Oulook distribution list (from the private contacts, not from the GAL).
I just saw examples of reading from OL using LINQ to DASL which I have working...
Started by Graeme on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at stackoverflow):
I was simply missing....
I guess there are several ways:
automate Outlook CDO Webdav other? what's the easiest?
Turns out it is easy enough .
OK, if no-one has experience with LINQ to DASL, can anyone share code that creates entries in a private distlist .
|
|
Let's say I have the three following lists
A1
A2
A3
B1
B2
C1
C2
C3
C4
C5
I'd like to combine them into a single list, with the items from each list as evenly distributed as possible sorta like this:
C1
A1
C2
B1
C3
A2
C4
B2
A3
C5
I'm using .NET 3.5/C# ...
Started by John Sheehan on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Here's if they have > 1 element....
An unsorted list should achieve your requirement of 'evenly-distributed' without too much effort.
You could simply combine the three lists into a single list and then UNSORT that list.
|