Auto synching a single contact folder for multiple Outlook users with Exchange

Status
Not open for further replies.

Toddtamcsin

Member
Outlook version
Outlook 2010 64 bit
Email Account
Exchange Server
Here's what we want: We have 3 different users of Outlook (in Exchange environment) within our organization that want to be able to work from a single contact folder containing shared contacts and distribution lists. We want full access and editing capability to these contacts for all three and we want to use them in the context of our individual email accounts - in other words we do not want to set-up a "departmental" shared email account. We all want to be able add contacts into the shared folder and add contacts from the shared folder to dist lists in that shared folder. We also want to be able to email contacts and dist lists from the shared folder using our indiv email accounts.

What we have done: We have enabled all of the sharing functions in Outlook with Publishing author access for the 2 additional users for the specific shared folder.

What is not working:

The publishing author users (PA) are not able to add an existing contact from the shared folder to a shared distribution list in that same folder.

Any new contacts added to the shared dist list go into the user's personal - not shared - folder.

When editing the shared dist list, the PA users cannot add members by browsing to the shared contact folder - the folder does not appear in the drop-down of choices.

When composing an email, the PAs cannot select shared contacts or dist lists - again they do not appear in the drop down.

What are we doing wrong - or not doing?
 
Re: Auto synching a single contact folder for multiple Outlook users with Exch

The folder is in a mailbox? A public folder might work better - it can be set as an address book.

Publishing author doesn't give them full edit capabilities, they can only edit things they create. They need to have Editor or better permissions. They won't be able to add the folder as an address book, therefore they can't browse to update DL or use it to send mail (by clicking on To). They need to open the folder and choose the contact, right click and send new mail to.

The new contact to user's personal folders is expected behavior. They need to use the Move to folder command instead of save & close. Or use a macro.

I use this to move contacts to a specific folder - created a button on an open contact form and hit it instead of save.

Code:
Sub MoveClientContacts()
   Dim objOutlook As Outlook.Application
   Dim objNamespace As Outlook.NameSpace
   Dim objSourceFolder As Outlook.MAPIFolder
   Dim objDestFolder As Outlook.MAPIFolder
   Dim objItem As ContactItem
  
   Set objOutlook = Application
   Set objNamespace = objOutlook.GetNamespace("MAPI")
   Set objSourceFolder = objNamespace.GetDefaultFolder(olFolderContacts)

   Set objItem = objOutlook.ActiveInspector.CurrentItem
        
   Set objDestFolder = objNamespace.Folders("SharePoint Lists").Folders("SPS Sync")
   objItem.Move objDestFolder
            
   Set objDestFolder = Nothing 
 
End Sub

If a public folder is not an option, have you looked at sync tools or BCM? BCM might be a bit of overkill (it's clunky and heavy) but sync utilities will be able to keep folders in each persons mailbox in sync. See the tools section here - http://www.slipstick.com/outlook/sync-outlook/synchronizing-outlook-on-two-machines/#tools for a list of utilities.
 
Re: Auto synching a single contact folder for multiple Outlook users with Exch

The folder is in a mailbox? A public folder might work better - it can be set as an address book.

Publishing author doesn't give them full edit capabilities, they can only edit things they create. They need to have Editor or better permissions. They won't be able to add the folder as an address book, therefore they can't browse to update DL or use it to send mail (by clicking on To). They need to open the folder and choose the contact, right click and send new mail to.

The new contact to user's personal folders is expected behavior. They need to use the Move to folder command instead of save & close. Or use a macro.

I use this to move contacts to a specific folder - created a button on an open contact form and hit it instead of save.

Code:
Sub MoveClientContacts()
   Dim objOutlook As Outlook.Application
   Dim objNamespace As Outlook.NameSpace
   Dim objSourceFolder As Outlook.MAPIFolder
   Dim objDestFolder As Outlook.MAPIFolder
   Dim objItem As ContactItem
  
   Set objOutlook = Application
   Set objNamespace = objOutlook.GetNamespace("MAPI")
   Set objSourceFolder = objNamespace.GetDefaultFolder(olFolderContacts)

   Set objItem = objOutlook.ActiveInspector.CurrentItem
        
   Set objDestFolder = objNamespace.Folders("SharePoint Lists").Folders("SPS Sync")
   objItem.Move objDestFolder
            
   Set objDestFolder = Nothing 
 
End Sub

If a public folder is not an option, have you looked at sync tools or BCM? BCM might be a bit of overkill (it's clunky and heavy) but sync utilities will be able to keep folders in each persons mailbox in sync. See the tools section here - http://www.slipstick.com/outlook/sync-outlook/synchronizing-outlook-on-two-machines/#tools for a list of utilities.

Thank you for your response. Not sure what you mean by "in a mailbox." The folder is in the list of folders under the contacts section of Outlook in our regular Outlook accounts which includes email, calendar & contacts. I will research the public folder option. I doubt our admin will allow us to add any utilities for this - I was hoping it would be supported with Exchange functionality that is built in..
 
Re: Auto synching a single contact folder for multiple Outlook users with Exch

Is the folder in one of the user's mailbox? A public folder should meet your needs better than a folder in one users mailbox.

- - - Updated - - -

Is the folder in one of the user's mailbox? A public folder should meet your needs better than a folder in one users mailbox.
 
Re: Auto synching a single contact folder for multiple Outlook users with Exch

The shared folder is in one of the user's email accounts (the owner)
 
Re: Auto synching a single contact folder for multiple Outlook users with Exch

The public folder option requires system admin to enable public folders option which they currently have not done. I can ask, but doubt they will do it. (We are in a large organization.) So Im still trying to do this with sharing and permissions.

The right click "mail to" option works so that is covered - thanks! And we upped permission levels to Publishing Editors. I am able to create a new contact in the shared folder - Yes!.

But I can't add that contact to a distribution list in the same shared folder. If you can help with that one I think I'll have it set!
 
Re: Auto synching a single contact folder for multiple Outlook users with Exch

Adding the contact to a DL is a toughie. They'll need to add them manually, or use categories to create dynamic contact groups. If they have a lot to add, create a list view that contacts just the full name (or file as) field and the email address. select the rows you want to add to the Contact group and click Add Members, From Contacts (or from Address Book) - paste the list in the Add row. It will add them (and complain that "file as" can't be resolved :) (delete it). They won't be linked to the contacts but may update if the mailbox owner clicks Update.
 
Re: Auto synching a single contact folder for multiple Outlook users with Exch

What exactly do you mean by "add them manually?" What is the procedure for that? Thanks again for your help.
 
Re: Auto synching a single contact folder for multiple Outlook users with Exch

Open the Contact Group, Click Add Members button on the ribbon, choose New Email contact and type in the name and address. However, if the contact is updated, the Update Now button won't update the contact because it's not linked (like it would be if they could use the Add from, Outlook Contacts or Add from Address Book).
 
Re: Auto synching a single contact folder for multiple Outlook users with Exch

OK Thank you - I will try that.
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
P Email address auto-completes work fine on laptop, but no longer on desktop Using Outlook 0
C New pc, new outlook, is it possible to import auto-complete emailaddress Using Outlook 4
R Outlook 365 VBA AUTO SEND WITH DELAY FOR EACH EMAIL Outlook VBA and Custom Forms 0
Nufc1980 Outlook "Please treat this as private label" auto added to some emails - Help. Using Outlook 3
K vba code to auto download email into a specific folder in local hard disk as and when any new email arrives in Inbox/subfolder Outlook VBA and Custom Forms 0
F Auto changing email subject line in bulk Using Outlook 2
T Outlook 2019 Not Using Auto Compete After Deletion of 365 Using Outlook 1
richardwing Auto forward email that is moves into a specific outlook folder Outlook VBA and Custom Forms 5
D Auto Remove [EXTERNAL] from subject - Issue with Macro Using Outlook 21
nmanikrishnan Auto-reply from default account Using Outlook 1
A Imap account not auto syncing inbox at startup Using Outlook 0
K Run a script rule to auto 'send again' on undeliverable emails? Outlook VBA and Custom Forms 1
FryW Need help modifying a VBA script for in coming emails to auto set custom reminder time Outlook VBA and Custom Forms 0
S Auto forward for multiple emails Outlook VBA and Custom Forms 0
DDB VBA to Auto Insert Date and Time in the signature Outlook VBA and Custom Forms 2
V Auto-complete stopped working Using Outlook 4
D auto forward base on email address in body email Outlook VBA and Custom Forms 0
M Replyall macro with template and auto insert receptens Outlook VBA and Custom Forms 1
R Auto Forwarding with different "From" Outlook VBA and Custom Forms 0
P auto-complete is hopelessly broken Using Outlook 0
R Auto Assign Category colours to Incoming Emails based on whom the email is addressed Outlook VBA and Custom Forms 3
C Auto Run VBA Code on new email Outlook VBA and Custom Forms 1
S Outlook Macro to send auto acknowledge mail only to new mails received to a specific shared inbox Outlook VBA and Custom Forms 0
V Auto-Submitted: auto-replied in header Using Outlook 0
R Auto display of new email does not work on non-default account Outlook VBA and Custom Forms 0
B Outlook 2016 Auto-archive creates new folder Using Outlook 3
J Edit auto-complete list in Outlook 2016+/365? Using Outlook 0
P Auto assign shared mailbox Outlook VBA and Custom Forms 1
M Outlook 2010 Problem with OutLook 2010 32 bit, after Windows Auto Update Using Outlook 3
P [SOLVED] Auto remove [EXTERNAL] from subject Using Outlook 16
Z Add text to auto-forwarded e-mail Outlook VBA and Custom Forms 4
N Disable Auto Read Receipts sent after using Advanced Find Using Outlook 4
Q Prompt button to auto turn on Out of Office Outlook VBA and Custom Forms 3
P Auto Insert Current Date or Time into Email Subject Outlook VBA and Custom Forms 2
S Messages moved / deleted by auto-archive are not synchronized to exchange Exchange Server Administration 8
B Outlook 2010 is Auto Purging when not configured for that Using Outlook 1
M VBA to auto forward message with new subject and body text Outlook VBA and Custom Forms 8
A Auto Accept Meetings from the General Calendar Using Outlook 3
R auto send email when meeting closes from a shared calendar only Outlook VBA and Custom Forms 2
S auto-mapping mailboxes in outlook impacting an ost file? Exchange Server Administration 2
M Auto expand Distribution List Before Sending Email Outlook VBA and Custom Forms 1
M Auto-export mail to Excel Outlook VBA and Custom Forms 2
Ms_Cynic Auto-pasting email content in calendar appt? Using Outlook 2
R How Do I insert images in and Auto Reply Using Outlook 3
S Received mail as part of DL, need to auto-CC the same when replying Outlook VBA and Custom Forms 5
T Have Outlook 2016 suggest email address auto complete entries directly from the user's contacts list Using Outlook 10
T Have Outlook 2016 suggest email address auto complete entries directly from the user's contacts list Using Outlook 0
P Auto scroll to specific folder in Folder Pane Outlook VBA and Custom Forms 3
C Auto categorize duplicate subjects Outlook VBA and Custom Forms 11
N Auto-complete - block select emails Using Outlook 3

Similar threads

Back
Top