Answers:
是的,有几种方法 - 没有一种是直截了当的。
您可以使用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/