Forum Discussion
cconsole
Jan 16, 2019Copper Contributor
How to change default mailbox language?
Hi! Our organization is located in Italy but if I create a new mailbox and do not make a prior access to OWA (where I am asked to specify time zone and language) the default folder names are shown i...
RobDiek
Jan 16, 2019Copper Contributor
Hey,
you can do this via a CMDlet called "Set-MailboxRegionalConfiguration":
https://docs.microsoft.com/en-us/powershell/module/exchange/client-access/set-mailboxregionalconfiguration?view=exchange-ps
basically this is the needed CMDlet
Set-MailboxRegionalConfiguration -Identity "Marcelo Teixeira" -Language it-IT -LocalizeDefaultFolderName
All the best
Robin
cconsole
Jan 17, 2019Copper Contributor
Thanks!
But is it possible to apply the command to all the exisiting and future mailboxes?
- cconsoleJan 17, 2019Copper Contributor
Do I mean multiple mailboxes with the same command, or do I need to run the command one mailbox at a time?
- Jan 17, 2019You have to get all the necessary mailboxes in a first command! With get-mailbox! Then you can pipe them to a other common like the above one! You can also pick all the mailboxes from a csv for example and then loop through them all with the above command ( that command too needs to be altered )
If you need help building this, let us know which mailboxes or if you have a set of users to do this on!
Adam- cconsoleJan 17, 2019Copper Contributor
Thanks!
I give a try!