Conectarse a la cuenta desde powershell: $UserCredential = Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection Import-PSSession $Session -DisableNameChecking HABILITAR EXPANSIÓN AUTOMÁTICA DE ARCHIVADO: Enable-Mailbox <user mailbox> -AutoExpandingArchive COMPROBAR QUE ESTA ACTIVADO, TIENE QUE DEVOLVER TRUE: Get-Mailbox <user mailbox> | FL AutoExpandingArchiveEnabled
Ver el contenido que ocupa cada carpeta: https://outlook.office.com/owa/?path=/options/mailboxcleanup Conectarse por PowerShell como Administrador local: Set-ExecutionPolicy RemoteSigned $UserCredential = Get-Credential Import-PSSession $Session $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection Ver las estadísticas de los correos en Purga / Recuperables cuyo límite es 30GB: Get-MailboxFolderStatistics -Identity «usuario@dominio.es» -FolderScope RecoverableItems | Format-Table Name,FolderAndSubfolderSize,ItemsInFolderAndSubfolders -Auto Ver
Microsoft tiene manuales a este respecto, solo hay que seguirlos: Primero nos conectamos por powershell a nuestro servidor Exchange de Office 365: IMPORTANTE NO TENER VALIDACIÓN EN 2 PASOS EN LA CUENTA ADMIN PARA ENTRAR https://docs.microsoft.com/es-es/powershell/exchange/exchange-online/connect-to-exchange-online-powershell/connect-to-exchange-online-powershell?view=exchange-ps Y después habilitamos la expansión automática, bien para un buzón o bien para toda la organización. https://docs.microsoft.com/es-es/office365/securitycompliance/enable-unlimited-archiving NO OLVIDAR
El proceso de reparación de un pst puede tardar bastante, durante el proceso, la aplicación puede no responder, pero es normal, cuando finalice responderá otra vez. El proceso se hará con el Outlook cerrado. Dependiendo de que versión de office tenemos, la ruta de la aplicación scanpst.exe estará en un sitio o en otro. Para
- 1
- 2