Created
May 25, 2018 18:40
-
-
Save dev-kperera/0ecbc544a6bf7af7f2ab4d7361863e59 to your computer and use it in GitHub Desktop.
If you not deployed Office 365 properly on a Windows server which promoted as Terminal Server (RDS) it will throw error when openning Office applications. By using this configuration XML it will force you to pull licenses from Office 365 but not from licensing server.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Configuration> | |
<Add OfficeClientEdition="64" Channel="Monthly"> | |
<Product ID="O365ProPlusRetail"> | |
<Language ID="en-us" /> | |
</Product> | |
<Product ID="VisioProRetail"> | |
<Language ID="en-us" /> | |
</Product> | |
</Add> | |
<Updates Enabled="TRUE" Channel="Monthly" /> | |
<Display Level="None" AcceptEULA="True" /> | |
<Property Name="SharedComputerLicensing" Value="1" /> | |
</Configuration> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.\setup.exe /configure configuration.xml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment