![]() |
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. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
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 |