A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook - Using Contacts
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Mass apply changes



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old September 13th 06, 02:41 PM posted to microsoft.public.outlook.contacts
RSteph
external usenet poster
 
Posts: 14
Default Mass apply changes

I have created 4 public contact lists. From the Administrator Account I have
added them to favorites, and clicked "show this folder as an e-mail address
book". What I would like to do, if there's a way, is to apply these settings
to all the accounts in the office. I'm wondering if I'll have to go to each
computer and make these changes person-by-person, or if there's a way from
either the Administrator account, or from the webmail server, to set these
changes to apply to all accounts? Any thoughts would be greatly appreciated.

For reference we are running MS Office Outlook 2003, and an Exchange server.
Ads
  #2  
Old September 13th 06, 03:02 PM posted to microsoft.public.outlook.contacts
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Mass apply changes

There is no server-based setting to do that. You could, however, write a script using the Outlook object model and ask each user to run it while Outlook is open.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

"RSteph" wrote in message ...
I have created 4 public contact lists. From the Administrator Account I have
added them to favorites, and clicked "show this folder as an e-mail address
book". What I would like to do, if there's a way, is to apply these settings
to all the accounts in the office. I'm wondering if I'll have to go to each
computer and make these changes person-by-person, or if there's a way from
either the Administrator account, or from the webmail server, to set these
changes to apply to all accounts? Any thoughts would be greatly appreciated.

For reference we are running MS Office Outlook 2003, and an Exchange server.

  #3  
Old September 13th 06, 03:22 PM posted to microsoft.public.outlook.contacts
RSteph
external usenet poster
 
Posts: 14
Default Mass apply changes

That sounds like a manageable route. However, I've never written scripts for
Outlook before, would you know any good resources you could point me to, to
help me getting started. i.e. some sample Outlook scripts, so I can get a
feel for field names, passing parameters, etc. Thank you in advance for any
direction you can offer to this end.

"Sue Mosher [MVP-Outlook]" wrote:

There is no server-based setting to do that. You could, however, write a script using the Outlook object model and ask each user to run it while Outlook is open.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

"RSteph" wrote in message ...
I have created 4 public contact lists. From the Administrator Account I have
added them to favorites, and clicked "show this folder as an e-mail address
book". What I would like to do, if there's a way, is to apply these settings
to all the accounts in the office. I'm wondering if I'll have to go to each
computer and make these changes person-by-person, or if there's a way from
either the Administrator account, or from the webmail server, to set these
changes to apply to all accounts? Any thoughts would be greatly appreciated.

For reference we are running MS Office Outlook 2003, and an Exchange server.


  #4  
Old September 13th 06, 03:41 PM posted to microsoft.public.outlook.contacts
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Mass apply changes

There's plenty of information in the Outlook VBA Help file on the objects, properties and methods you'll need. Some useful bits:

Script to start external Outlook automation
http://www.outlookcode.com/codedetail.aspx?id=83

Code to return a folder based on a path
http://www.outlookcode.com/d/getfolder.htm

Method to add folder to Public Folder\Favorites
MAPIFolder.AddToFavorites

Properties to put it in the address book
MAPIFolder.ShowAsOutlookAB
MAPIFolder.AddressBookName

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

"RSteph" wrote in message ...
That sounds like a manageable route. However, I've never written scripts for
Outlook before, would you know any good resources you could point me to, to
help me getting started. i.e. some sample Outlook scripts, so I can get a
feel for field names, passing parameters, etc. Thank you in advance for any
direction you can offer to this end.

"Sue Mosher [MVP-Outlook]" wrote:

There is no server-based setting to do that. You could, however, write a script using the Outlook object model and ask each user to run it while Outlook is open.



"RSteph" wrote in message ...
I have created 4 public contact lists. From the Administrator Account I have
added them to favorites, and clicked "show this folder as an e-mail address
book". What I would like to do, if there's a way, is to apply these settings
to all the accounts in the office. I'm wondering if I'll have to go to each
computer and make these changes person-by-person, or if there's a way from
either the Administrator account, or from the webmail server, to set these
changes to apply to all accounts? Any thoughts would be greatly appreciated.

For reference we are running MS Office Outlook 2003, and an Exchange server.


  #5  
Old September 13th 06, 03:54 PM posted to microsoft.public.outlook.contacts
RSteph
external usenet poster
 
Posts: 14
Default Mass apply changes

Thank you for yoru help, looking at the information you gave me, I should
have everything I need to write the script.

"Sue Mosher [MVP-Outlook]" wrote:

There's plenty of information in the Outlook VBA Help file on the objects, properties and methods you'll need. Some useful bits:

Script to start external Outlook automation
http://www.outlookcode.com/codedetail.aspx?id=83

Code to return a folder based on a path
http://www.outlookcode.com/d/getfolder.htm

Method to add folder to Public Folder\Favorites
MAPIFolder.AddToFavorites

Properties to put it in the address book
MAPIFolder.ShowAsOutlookAB
MAPIFolder.AddressBookName

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

"RSteph" wrote in message ...
That sounds like a manageable route. However, I've never written scripts for
Outlook before, would you know any good resources you could point me to, to
help me getting started. i.e. some sample Outlook scripts, so I can get a
feel for field names, passing parameters, etc. Thank you in advance for any
direction you can offer to this end.

"Sue Mosher [MVP-Outlook]" wrote:

There is no server-based setting to do that. You could, however, write a script using the Outlook object model and ask each user to run it while Outlook is open.



"RSteph" wrote in message ...
I have created 4 public contact lists. From the Administrator Account I have
added them to favorites, and clicked "show this folder as an e-mail address
book". What I would like to do, if there's a way, is to apply these settings
to all the accounts in the office. I'm wondering if I'll have to go to each
computer and make these changes person-by-person, or if there's a way from
either the Administrator account, or from the webmail server, to set these
changes to apply to all accounts? Any thoughts would be greatly appreciated.

For reference we are running MS Office Outlook 2003, and an Exchange server.


  #6  
Old September 13th 06, 06:17 PM posted to microsoft.public.outlook.contacts
RSteph
external usenet poster
 
Posts: 14
Default Mass apply changes

I've got the code worked out, and tested, it's all working properly. I've got
it built in right now as a macro. Is there a way I can attach it in an e-mail
and have people run it as a macro on their system, I would it be better for
me to turn it into an executable and then send it out? Thanks in advance for
your thoughts, and for your previous help.

"Sue Mosher [MVP-Outlook]" wrote:

There's plenty of information in the Outlook VBA Help file on the objects, properties and methods you'll need. Some useful bits:

Script to start external Outlook automation
http://www.outlookcode.com/codedetail.aspx?id=83

Code to return a folder based on a path
http://www.outlookcode.com/d/getfolder.htm

Method to add folder to Public Folder\Favorites
MAPIFolder.AddToFavorites

Properties to put it in the address book
MAPIFolder.ShowAsOutlookAB
MAPIFolder.AddressBookName

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

"RSteph" wrote in message ...
That sounds like a manageable route. However, I've never written scripts for
Outlook before, would you know any good resources you could point me to, to
help me getting started. i.e. some sample Outlook scripts, so I can get a
feel for field names, passing parameters, etc. Thank you in advance for any
direction you can offer to this end.

"Sue Mosher [MVP-Outlook]" wrote:

There is no server-based setting to do that. You could, however, write a script using the Outlook object model and ask each user to run it while Outlook is open.



"RSteph" wrote in message ...
I have created 4 public contact lists. From the Administrator Account I have
added them to favorites, and clicked "show this folder as an e-mail address
book". What I would like to do, if there's a way, is to apply these settings
to all the accounts in the office. I'm wondering if I'll have to go to each
computer and make these changes person-by-person, or if there's a way from
either the Administrator account, or from the webmail server, to set these
changes to apply to all accounts? Any thoughts would be greatly appreciated.

For reference we are running MS Office Outlook 2003, and an Exchange server.


  #7  
Old September 13th 06, 06:30 PM posted to microsoft.public.outlook.contacts
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Mass apply changes

In a relatively information office environment, I'd probably code it as a VBScript .vbs file, store it on a network drive, and send out a link telling people how to run it.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

"RSteph" wrote in message ...
I've got the code worked out, and tested, it's all working properly. I've got
it built in right now as a macro. Is there a way I can attach it in an e-mail
and have people run it as a macro on their system, I would it be better for
me to turn it into an executable and then send it out? Thanks in advance for
your thoughts, and for your previous help.

"Sue Mosher [MVP-Outlook]" wrote:

There's plenty of information in the Outlook VBA Help file on the objects, properties and methods you'll need. Some useful bits:

Script to start external Outlook automation
http://www.outlookcode.com/codedetail.aspx?id=83

Code to return a folder based on a path
http://www.outlookcode.com/d/getfolder.htm

Method to add folder to Public Folder\Favorites
MAPIFolder.AddToFavorites

Properties to put it in the address book
MAPIFolder.ShowAsOutlookAB
MAPIFolder.AddressBookName



"RSteph" wrote in message ...
That sounds like a manageable route. However, I've never written scripts for
Outlook before, would you know any good resources you could point me to, to
help me getting started. i.e. some sample Outlook scripts, so I can get a
feel for field names, passing parameters, etc. Thank you in advance for any
direction you can offer to this end.

"Sue Mosher [MVP-Outlook]" wrote:

There is no server-based setting to do that. You could, however, write a script using the Outlook object model and ask each user to run it while Outlook is open.



"RSteph" wrote in message ...
I have created 4 public contact lists. From the Administrator Account I have
added them to favorites, and clicked "show this folder as an e-mail address
book". What I would like to do, if there's a way, is to apply these settings
to all the accounts in the office. I'm wondering if I'll have to go to each
computer and make these changes person-by-person, or if there's a way from
either the Administrator account, or from the webmail server, to set these
changes to apply to all accounts? Any thoughts would be greatly appreciated.

For reference we are running MS Office Outlook 2003, and an Exchange server.


 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Apply Photo to Contact Programatix Outlook and VBA 2 August 17th 06 04:01 PM
how do I apply a form to one Contact? don Outlook - Using Forms 1 July 5th 06 07:40 PM
Why is it not possible to apply rules for alias adresses? Ali Outlook - Installation 0 May 30th 06 07:28 PM
How to Apply to All one set of Folder Views mdavison Outlook - General Queries 3 May 10th 06 02:58 PM
Changes to recurring meetings should only apply to the future chimaera Outlook - Calandaring 1 February 8th 06 05:18 PM


All times are GMT +1. The time now is 08:29 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.