我可以在Outlook 365中隐藏内置文件夹吗?


5

我们将Office365与桌面Outlook客户端一起使用。我不使用几个文件夹(RSS订阅,发件箱,垃圾邮件)。我不想删除它们,但有没有办法将它们隐藏在文件夹树中?

Answers:


1

是的,有几种方法 - 没有一种是直截了当的。

您可以使用MFCMAPI等工具
http://mfcmapi.codeplex.com/

MFCMAPI将允许您在文件夹上设置隐藏属性。

您可以使用VBA(按ALT + F11打开VBA编辑器) - 选择您的文件夹并运行以下命令:

Option Explicit

Public Sub HideOutlookFolders()

Dim oOutlookFolder As Outlook.Folder
Dim oPropertyAccessor As Outlook.propertyAccessor
Dim PropName, Value, FolderType As String


PropName = "http://schemas.microsoft.com/mapi/proptag/0x10F4000B"
Value = True

Set oOutlookFolder = Application.ActiveExplorer.CurrentFolder
Set oPropertyAccessor = oFolder.propertyAccessor

oPropertyAccessor .SetProperty PropName, Value

Set oOutlookFolder = Nothing
Set oPropertyAccessor = Nothing
End Sub

原始来源:http//www.slipstick.com/outlook/delete-outlooks-default-folders/

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.