How to install dutch version of Microsoft 365 Apps for enterprise with winget #1876
-
I want to install only the dutch version of Microsoft 365 Apps for enterprise but i can't figure it out using --local. Can someone point me out what the right command is? so far i tried: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
You can't do it with the existing manifest (which was created as a hackathon project at MS), but if you create a config file yourself (https://config.office.com/deploymentsettings), you can use it with the winget package:
An example config file for you would be:
Save that as a .xml file, and put the path to it in the command above. |
Beta Was this translation helpful? Give feedback.
-
I'd like to add to this as I was running through the same problem myself and found this discussion through google. @jedieaston's answer is mostly right. It was probably correct at the time of his writing. For any future lost souls, at the time of writing this would be the correct command
|
Beta Was this translation helpful? Give feedback.
You can't do it with the existing manifest (which was created as a hackathon project at MS), but if you create a config file yourself (https://config.office.com/deploymentsettings), you can use it with the winget package:
winget install -s winget Microsoft.Office --custom "/configure <path to configuration file>"
An example config file for you would be:
Save that as a…