Outlook "Inbox" folder renamed to "Untitled"

0

1

I have a strange issue in Outlook I haven't encountered before. I have an Exchange server at home, and when I opened up Outlook today, my "Inbox" folder has been renamed to "Untitled". When I right-click to rename it, that option is disabled.

How can I change the name of my Inbox folder back to "Inbox"? When I search this issue, all I get is articles on how to rename the OST/PST, and not un-renamable folders.

I've got Outlook 2010 and Exchange 2003.

Moses

Posted 2015-11-13T14:33:19.770

Reputation: 10 813

Any reason for the downvote? Or are you just a grump? – Moses – 2015-11-13T16:40:31.787

I think a good question which is also well worded so +1 – Dave – 2015-11-14T21:38:49.573

Answers

1

I was under the impression you can't rename the default folders, but since you've experienced it then I guess you can.

You could try via VBa

Sub InboxRename()
Dim oFolder As Outlook.MAPIFolder

Set oFolder = Application.Session.GetDefaultFolder(olFolderInbox)
oFolder.Name = "Inbox"
Set oFolder = Nothing
End Sub

Of course, this won't actually help you to realise who/how/when/why etc but it may get you out of this.

The code above is untested! Back up your emails/calender/contacts etc first if you have any saved local

Source

Dave

Posted 2015-11-13T14:33:19.770

Reputation: 24 199

Unfortunately this did not work. When I attempt to run the script, I get a permissions error. – Moses – 2015-11-20T21:37:35.933