Skip to content

Instantly share code, notes, and snippets.

@dev-kperera
Created May 25, 2018 18:40
Show Gist options
  • Save dev-kperera/0ecbc544a6bf7af7f2ab4d7361863e59 to your computer and use it in GitHub Desktop.
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.
<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>
.\setup.exe /configure configuration.xml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment