Estamos usando Office365 con el cliente Outlook de escritorio. Hay varias carpetas (Suscripciones RSS, Bandeja de salida, Correo no deseado) que no uso. No quiero eliminarlos, pero ¿hay alguna forma de ocultarlos en el árbol de carpetas?
Respuesta1
Sí, hay un par de formas, ninguna de las cuales es sencilla.
Puedes usar una herramienta como MFCMAPI
http://mfcmapi.codeplex.com/
MFCMAPI le permitirá configurar el atributo oculto en una carpeta.
Puede usar VBA (presione ALT+F11 para abrir el editor de VBA): seleccione su carpeta y ejecute lo siguiente:
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
Fuente original: http://www.slipstick.com/outlook/delete-outlooks-default-folders/