Good morning,
I am requesting help as I am unfortunately unable to install MS Office 2007 with WAPT.
I created a silent.msp file with a license key as well as SETUP_REBOOT Never and AUTO_ACTIVATE.
I created my package containing the ISO in the package root, the MSP file, and an uninstall file in XML format:
Code: Select all
<Configuration Product="ProPLus">
<Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
<Setting Id="SETUP_REBOOT" Value="Never" />
</Configuration>
Here is my setup.py file
Code: Select all
# -*- coding: utf-8 -*-
from setuphelpers import *
uninstallstring = 'MsiExec.exe /qn /X{90150000-0011-0000-0000-0000000FF1CE}' # j'ai mis cela mais pour l'instant je cherche seulement à installe
def install():
print('installing aiz-office2007')
cmd ='"setup.exe" /adminfile "install_sans_access.MSP"'
run(cmd,timeout=10000,accept_returncodes=[1641,3010,0])
WAPT returns an error:
Exception: Error during install of pc4001v.montupet.com (=2): errors in packages test-office2007
Installing test-office2007
Exception: Error during install of test-office2007 (=15-0): errors in packages test-office2007
Traceback (most recent call last):
File "C:\wapt\waptservice\waptservice.py", line 2031, in run
self.running_task.run()
File "C:\wapt\waptservice\waptservice.py", line 1291, in pwrapper
return func(*arg, **kwargs)
File "C:\wapt\waptservice\waptservice.py", line 1351, in run
self._run()
File "C:\wapt\waptservice\waptservice.py", line 1775, in _run
','.join([ p[1].package for p in self.result['errors']]),
Exception: Error during install of test-office2007 (=15-0): errors in packages test-office2007
I don't understand where this error comes from.
I followed these procedures:
https://wiki.lesfourmisduweb.org/index. ... aquet_wapt
viewtopic.php?f=9&t=360
I gladly accept your help.