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 and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Change folder names of all users



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old March 10th 06, 08:55 PM posted to microsoft.public.exchange.applications,microsoft.public.outlook.program_vba
Gaspar
external usenet poster
 
Posts: 3
Default Change folder names of all users

I tried the following to rename a given user's folder name but I get a
permissions error (althought I have all the required permissions to access
all mailboxes).

Set myOlApp= CreateObject ("Outlook.Application")
Set mynamespace = myOlApp.Getnamespace("MAPI")
Set myRecipient = myNamespace.CreateRecipient("usernameXXX")
myRecipient.Resolve
mynamespace.GetSharedDefaultFolder(myRecipient, olfolderCalendar).Name =
"newNameXXX"

Any ideas?


Ads
  #2  
Old March 10th 06, 09:57 PM posted to microsoft.public.exchange.applications,microsoft.public.outlook.program_vba
Eric Legault [MVP - Outlook]
external usenet poster
 
Posts: 830
Default Change folder names of all users

Are you positive you have full Editor permissions on the user's folder via
the Delegates tab in Tools - Options? Also, if you are a member of the
Exchange Administrators group, by default you do *not* have read nor write
permissions to other user's mailboxes.

--
Eric Legault (Outlook MVP, MCDBA, old school WOSA MCSD, B.A.)
Try Picture Attachments Wizard for Outlook:
http://www.collaborativeinnovations.ca
Blog: http://blogs.officezealot.com/legault/


"Gaspar" wrote:

I tried the following to rename a given user's folder name but I get a
permissions error (althought I have all the required permissions to access
all mailboxes).

Set myOlApp= CreateObject ("Outlook.Application")
Set mynamespace = myOlApp.Getnamespace("MAPI")
Set myRecipient = myNamespace.CreateRecipient("usernameXXX")
myRecipient.Resolve
mynamespace.GetSharedDefaultFolder(myRecipient, olfolderCalendar).Name =
"newNameXXX"

Any ideas?



  #3  
Old March 10th 06, 10:54 PM posted to microsoft.public.exchange.applications,microsoft.public.outlook.program_vba
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Change folder names of all users

I suspect that Owner permission is needed to change a folder name.

--
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


"Eric Legault [MVP - Outlook]" wrote in message ...
Are you positive you have full Editor permissions on the user's folder via
the Delegates tab in Tools - Options? Also, if you are a member of the
Exchange Administrators group, by default you do *not* have read nor write
permissions to other user's mailboxes.

--
Eric Legault (Outlook MVP, MCDBA, old school WOSA MCSD, B.A.)
Try Picture Attachments Wizard for Outlook:
http://www.collaborativeinnovations.ca
Blog: http://blogs.officezealot.com/legault/


"Gaspar" wrote:

I tried the following to rename a given user's folder name but I get a
permissions error (althought I have all the required permissions to access
all mailboxes).

Set myOlApp= CreateObject ("Outlook.Application")
Set mynamespace = myOlApp.Getnamespace("MAPI")
Set myRecipient = myNamespace.CreateRecipient("usernameXXX")
myRecipient.Resolve
mynamespace.GetSharedDefaultFolder(myRecipient, olfolderCalendar).Name =
"newNameXXX"

Any ideas?



  #4  
Old March 14th 06, 01:01 PM posted to microsoft.public.exchange.applications,microsoft.public.outlook.program_vba
Gaspar
external usenet poster
 
Posts: 3
Default Change folder names of all users

No, there is some way to do it because I tested applications that can do
this.
I just want to figure out how.

Thanks

"Sue Mosher [MVP-Outlook]" wrote in message
...
I suspect that Owner permission is needed to change a folder name.

--
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


"Eric Legault [MVP - Outlook]" wrote in
message ...
Are you positive you have full Editor permissions on the user's folder via
the Delegates tab in Tools - Options? Also, if you are a member of the
Exchange Administrators group, by default you do *not* have read nor write
permissions to other user's mailboxes.

--
Eric Legault (Outlook MVP, MCDBA, old school WOSA MCSD, B.A.)
Try Picture Attachments Wizard for Outlook:
http://www.collaborativeinnovations.ca
Blog: http://blogs.officezealot.com/legault/


"Gaspar" wrote:

I tried the following to rename a given user's folder name but I get a
permissions error (althought I have all the required permissions to
access
all mailboxes).

Set myOlApp= CreateObject ("Outlook.Application")
Set mynamespace = myOlApp.Getnamespace("MAPI")
Set myRecipient = myNamespace.CreateRecipient("usernameXXX")
myRecipient.Resolve
mynamespace.GetSharedDefaultFolder(myRecipient, olfolderCalendar).Name =
"newNameXXX"

Any ideas?





  #5  
Old March 14th 06, 01:02 PM posted to microsoft.public.exchange.applications,microsoft.public.outlook.program_vba
Gaspar
external usenet poster
 
Posts: 3
Default Change folder names of all users

Are you positive you have full Editor permissions on the user's folder via
the Delegates tab in Tools - Options? Also, if you are a member of the
Exchange Administrators group, by default you do *not* have read nor write
permissions to other user's mailboxes.


I followed the Exchange instructions and I created a new group (which I
belong) with the SEND AS and RECEIVE AS permissions. Is that enough?

I don't know where "the Delegates tab in Tools - Options" is. Gimme a clue.

Thanks!



--
Eric Legault (Outlook MVP, MCDBA, old school WOSA MCSD, B.A.)
Try Picture Attachments Wizard for Outlook:
http://www.collaborativeinnovations.ca
Blog: http://blogs.officezealot.com/legault/


"Gaspar" wrote:

I tried the following to rename a given user's folder name but I get a
permissions error (althought I have all the required permissions to
access
all mailboxes).

Set myOlApp= CreateObject ("Outlook.Application")
Set mynamespace = myOlApp.Getnamespace("MAPI")
Set myRecipient = myNamespace.CreateRecipient("usernameXXX")
myRecipient.Resolve
mynamespace.GetSharedDefaultFolder(myRecipient, olfolderCalendar).Name =
"newNameXXX"

Any ideas?





  #6  
Old March 28th 06, 12:40 AM posted to microsoft.public.exchange.applications,microsoft.public.outlook.program_vba
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Change folder names of all users

I followed the Exchange instructions and I created a new group (which I
belong) with the SEND AS and RECEIVE AS permissions. Is that enough?


I don't know what "Exchange instructions" you might be referring to.

I don't know where "the Delegates tab in Tools - Options" is. Gimme a clue.


In Outlook, click Tools, then Options, the look for the Delegates tab.

--
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

"Gaspar" wrote in message ...
Are you positive you have full Editor permissions on the user's folder via
the Delegates tab in Tools - Options? Also, if you are a member of the
Exchange Administrators group, by default you do *not* have read nor write
permissions to other user's mailboxes.


I followed the Exchange instructions and I created a new group (which I
belong) with the SEND AS and RECEIVE AS permissions. Is that enough?

I don't know where "the Delegates tab in Tools - Options" is. Gimme a clue.

Thanks!



"Gaspar" wrote:

I tried the following to rename a given user's folder name but I get a
permissions error (althought I have all the required permissions to
access
all mailboxes).

Set myOlApp= CreateObject ("Outlook.Application")
Set mynamespace = myOlApp.Getnamespace("MAPI")
Set myRecipient = myNamespace.CreateRecipient("usernameXXX")
myRecipient.Resolve
mynamespace.GetSharedDefaultFolder(myRecipient, olfolderCalendar).Name =
"newNameXXX"

Any ideas?





 




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
Cannot change default Insert Attachment folder- FIXED Cooler Dude Outlook Express 0 March 5th 06 12:16 PM
Why does Outlook synchronize always when i change the folder? Sumit Kumar Outlook - Installation 0 March 2nd 06 12:19 PM
Can't change default delivery folder George Outlook - Installation 1 February 17th 06 07:59 PM
truncated folder names Al Swain Outlook - Installation 1 January 19th 06 04:53 PM
Change of color in folder JE Timothy Outlook Express 3 January 9th 06 04:08 PM


All times are GMT +1. The time now is 08:30 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.