The search returned 9 results

by SergieTrunk
May 20, 2016 - 09:55
Forum: WAPT Packages
Subject: [Wapt - installation path]
Answers: 23
Views : 22036

Re: [Wapt - installation path]

Hello,
yes, I just tried it on another machine with the same executable and I no longer have the problem.
Thank you.
by SergieTrunk
May 19, 2016 - 5:45 PM
Forum: WAPT Packages
Subject: [Wapt - installation path]
Answers: 23
Views : 22036

Re: [Wapt - installation path]

Hello,
I'm following up on the first response.
I need to install my agent in C:\appli\wapt, not the default C:\wapt.
So I modified the line `DefaultDirName="C:\appli\wapt"` and created a new agent. Indeed, when I install it manually, it suggests this directory...
by SergieTrunk
May 2, 2016 - 5:17 PM
Forum: WAPT Packages
Subject: Problem testing an MS Office 2010 package
Answers: 12
Views : 11842

Re: Problem testing an MS Office 2010 package

Thank you so much, the package works perfectly now, that was all it was
by SergieTrunk
May 2, 2016 - 09:57
Forum: WAPT Packages
Subject: Problem testing an MS Office 2010 package
Answers: 12
Views : 11842

Re: Problem testing an MS Office 2010 package

Hello,
I confirm that the setup.exe and silent.msp files are present with the correct names (I tried replacing "setup.exe" with "setup" in the .py file). I still get the same error with the --direct option.
by SergieTrunk
April 29, 2016 - 09:58
Forum: WAPT Packages
Subject: Problem testing an MS Office 2010 package
Answers: 12
Views : 11842

Re: Problem testing an MS Office 2010 package

Hello,
thank you, I just corrected it.
I'm still getting the same error message:
C:\Users\Administrator>wapt-get install C:\waptdev\ARS-microsoftsetupbootstrapper-wapt
Installing WAPT file C:\waptdev\ARS-microsoftsetupbootstrapper-wapt
2016-04-29 09:56:53,063 CRITICAL Fatal error in install ...
by SergieTrunk
April 28, 2016 - 5:00 PM
Forum: WAPT Packages
Subject: Problem testing an MS Office 2010 package
Answers: 12
Views : 11842

Re: Problem testing an MS Office 2010 package

Hello,
so I tried navigating to the directory and then running `setup.exe /VERYSILENT` from the command line, but the error message I included as an image in my first message still appears.
I then tried `setup.exe /adminfile silent.msp`, still in the same directory...
by SergieTrunk
April 27, 2016 - 9:35 AM
Forum: WAPT Packages
Subject: Problem testing an MS Office 2010 package
Answers: 12
Views : 11842

Re: Problem testing an MS Office 2010 package

I'm still getting the same message. I modified setup.py as follows:

Code: Select all

# -*- coding: utf-8 -*-
from setuphelpers import *

uninstallkey = []

def install():
    print('installing ARS-microsoftsetupbootstrapper')
    run("setup.exe")
by SergieTrunk
April 26, 2016 - 3:59 PM
Forum: WAPT Packages
Subject: Problem testing an MS Office 2010 package
Answers: 12
Views : 11842

Re: Problem testing an MS Office 2010 package

Code: Select all

# -*- coding: utf-8 -*-
from setuphelpers import *

uninstallkey = []

def install():
    print('installing ARS-microsoftsetupbootstrapper')
    run(r'"setup.exe" /VERYSILENT')
I haven't changed anything in it; the silent installation happens automatically with setup.exe without wapt.
by SergieTrunk
April 26, 2016 - 3:01 PM
Forum: WAPT Packages
Subject: Problem testing an MS Office 2010 package
Answers: 12
Views : 11842

Problem testing an MS Office 2010 package

Hello,
I'm creating a new topic even though one already exists, but I'm a complete beginner in Python, and from what I understand, the code needs to be modified depending on our specific situations. I would therefore need some clarification.
So, first of all, I created an MS Office 2010 template with...