Page 1 of 1
[RESOLVED] Office 2013 package with license management
Published: May 20, 2021 - 2:27 PM
by Louis
Hello!
I'd like to know if anyone in the community has already developed an Office 2013 with license management and could share it with me, or help me develop my own, as I'm not sure how to do it.
The few tutorials I've found here are a bit outdated or incomplete.
Thank you in advance for your help.
Sincerely.
Re: Office 2013 package with license management
Published: May 20, 2021 - 5:18 PM
by florentR2
Good morning,
If you are using a KMS volume license, you need to generate an XML file and pass it as a parameter with /config during installation.
For example, our XML looks like this:
Code: Select all
<Configuration Product="ProPlus">
<Display Level="basic" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" NoCancel="no" />
<Setting Id="KMSSERVICENAME" Value="ServeurKMS.xxx" />
<Setting Id="AUTO_ACTIVATE" Value="1" />
</Configuration>
And the setup.py
Code: Select all
install_exe_if_needed("setup.exe",'/adminfile officeproplus2013_32bits.msp /config config.xml',key='Office15.PROPLUS',min_version='15.0.4420.1017', timeout=1800)
Re: [RESOLVED] Office 2013 package with license management
Published: May 26, 2021 - 3:52 PM
by Louis
Hello,
I would like to have more information about setup.py.
What is the purpose of "/adminfile officeproplus2013_32bits.msp" and "key='Office15.PROPLUS'"?
Sincerely,
Louis.
Re: [RESOLVED] Office 2013 package with license management
Published: May 27, 2021 - 09:51
by florentR2
For the
Code: Select all
/adminfile officeproplus2013_32bits.msp
This is the standard Office deployment method. You should consult the Microsoft documentation.
For the
WAPT uses it to check if the software is properly installed; it also prevents Office from reinstalling if it's already installed. You can obtain it with