Cómo cambiar todos el idioma a todos los usuarios de office 365

Once all of the above listed components are installed, you are ready to connect to Office 365 or Exchange Online. Depending on your preference, open up PowerShell (run as administrator).

 

Set-ExecutionPolicy Unrestricted   - Acepta el Warning

 

First, import all the relevant cmdlets by running the following command.

 

Import-Module MSOnline

 

Second, run the code below and enter in the Office 365 administrative logon credentials.

 

$365Logon = get-credential

 

Now configure the remote PowerShell session variables. Note: These next two commands will make a connection to the Exchange Online management shell.

 

$365PSSession = New-PSSession –ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell -Credential $365Logon -Authentication Basic –AllowRedirection     -todo esto es solo un comando

 

Run the code below to connect.

 

Import-PSSession $365PSSession –AllowClobber

 

Last, connect to Office 365 via this command line and you are now ready to run PowerShell commands.

Connect-MsolService –Credential $365Logon

 

Finalmente, para poner todos los usuarios en Castellano/Español :

 

Get-MsolUser | Set-MsolUser –PreferredLanguage “es-ES”

  • 0 Kasutajad peavad seda kasulikuks
Kas see vastus oli kasulik?