COmo ya se anunció en la revision trimestral se añaden nuevas ordenes powershell en BPOS
Hay que descargar utilidad nueva de migracion ya sea en 32 bits o en 64 bits. Sin ella, no tendremos acceso a las ordenes.
De las cuatro ordenes contamos con las de "ALternate recipient" personalmente no son las que más uso os las pongo
1. Clear-MSOnlineAlternateRecipient: By using this cmdlet, you can remove all alternate recipient settings for a user’s mailbox in Microsoft Online Services. Clearing these settings will stop incoming messages from being forwarded to a designated alternate e-mail address and will restore delivery to the original recipient’s mailbox.
Get the Clear-MSOnlineAlternateRecipient cmdlt here.
2. Set-MSOnlineAlternateRecipient: Use the Set-MSOnlineAlternateRecipient cmdlet to set an alternate recipient for a user’s mailbox in Microsoft Online Services. The cmdlet supports the following delivery scenarios for incoming e-mail messages:
Get the Set-MSOnlineAlternateRecipient cmdlt here.
La que por fin tenemos es la de habilitar/deshabilitar POP3 a un usuario. Cuantas llamadas a soporte, y tickets no hemos puesto para hacer esto....
Las ordenes son
3. Disable-MSOnlinePOPAccess: Use this cmdlet to disable POP3 access for a specific user’s mailbox in Microsoft Online Services.
Disable-MSOnlinePOPAccess -Identity <String> -Credentials <PSCredentials>
This example disables POP3 access for a specific user’s mailbox.
Disable-MSOnlinePOPAccess -Identity johns@contoso.com -Credentials $CompanyAdminCredentials
4. Enable-MSOnlinePOPAccess: Use this cmdlet to enable POP3 access for a specific user’s mailbox in Microsoft Online Services.
Use the Enable-MSOnlinePOPAccess cmdlet to enable POP3 access for a specific user’s mailbox in Microsoft Online Services .
Enable-MSOnlinePOPAccess -Identity <String> -Credentials <PSCredentials>
This example enables POP access for a specific user’s mailbox.
Enable-MSOnlinePOPAccess -Identity johns@contoso.com -Credentials $CompanyAdminCredentials
Espero que me deis feedback de como de rapido es el proceso, a priori pinta bien.