Management Cloud & Security
Header

Importar contactos externos desde un CSV

enero 12th, 2013 | Posted by Jorge Castañeda in Exchange | Office 365

Procedemos agregar la importación de contactos externos desde un archivo.CSV en Exchange Online.

1-Conectamos al Office 365 a través de PowerShell:

    1. $livecred = Get-Credential
    2. Connect-MsolService -Credential $livecred
    3. $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection
    4. Import-PSSession $Session

2-Crear el archivo CSV en el formato: name, externalemailaddress

image

3-Utilice el siguiente comando en Windows PowerShell para realizar la importación:

Import-Csv C:\Users\Jorge\Desktop\externcontactos.csv | foreach-object {new-mailcontact -externalemailaddress $_.externalemailaddress  -name $_.name }

image

Lo vemos en nuestro portal .

image

4 – Podemos importar todos los contactos que requerimos a través de un archivo CSV.

En el post anterior se realizo manualmente Contactos Externos 

 

Mas detalles de como preparar correctamente un CSV

 

Jorge Castañeda  | http://blogs.itpro.es/xorxe

facebook3 linkedin3 twitter3

You can follow any responses to this entry through the RSS 2.0 You can leave a response, or trackback.

One Response



Leave a Reply