Entradas

Mostrando entradas de noviembre, 2021

Como cambiar el idioma por defecto de los buzones en Exchange 365

 Nos conectamos por powershell, y ejecutamos: Para cambiar el idioma por defecto de todos los buzones, ejecutaremos: Get-mailbox -ResultSize unlimited | Set-MailboxRegionalConfiguration -Language es-ES -TimeZone "Romance Standard Time" -LocalizeDefaultFolderName En este ejemplo, lo cambiamos a español.

Como conectar por powershell a Exchange 365

Abrimos un powershell y ejecutamos: $365Logon = Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $365Logon -Authentication Basic -AllowRedirection Import-PSSession $Session