Page 1 of 1
[RESOLVED] Aseba Studio Package
Published: June 8, 2018 - 09:31
by gaelds
Good morning,
I was using a WAPT package to install Aseba Studio 1.5.5 on Windows XP PCs with a simple "/S" command in the run dialog. But since updating this package to version 1.6 and trying to install it on Windows 10 Pro 64-bit, I get this message:
Code: Select all
com_error: (-2147024809, 'Param\xe8tre incorrect.', None, None)
The /s command doesn't work for silently installing version 1.6 by manually running the command, but I haven't found any other switches on the official website. Has anyone else created a similar package for Aseba?
Re: Aseba Studio Package
Published: June 8, 2018 - 6:15 PM
by dcardon
Hello Gaelds,
gaelds wrote: ↑June 8, 2018 - 09:31
I was using a WAPT package to install Aseba Studio 1.5.5 on Windows XP PCs with a simple "/S" command in the run dialog. But since updating this package to version 1.6 and trying to install it on Windows 10 Pro 64-bit, I get this message:
Code: Select all
com_error: (-2147024809, 'Param\xe8tre incorrect.', None, None)
The /s command doesn't work for silently installing version 1.6 by manually running the command, but I haven't found any other switches on the official website. Has anyone else created a similar package for Aseba?
For this, I think the best thing to do is ask directly on the software's forum or mailing list. Other common settings include /SILENT, /VERYSILENT, /qn, etc.
You can try running wapt-get make-template on the exe in question to see what WAPT would suggest (make-template tries to search for the most common installer types).
Sincerely,
Denis
Re: Aseba Studio Package
Published: June 11, 2018 - 08:51
by gaelds
dcardon wrote: ↑June 8, 2018 - 6:15 PM
For that, I think the best thing to do is to ask directly on the forum or the software's mailing list.
Is there another forum for asking this kind of question? The package creation wizard only gives /verysilent, but that doesn't work either.
EDIT: It seems that Aseba Studio software is still installed and usable on the machine, a run_notfatal might do the trick, but it's not very "clean".
Re: [SOLVED] Aseba Studio Package
Published: Dec 7, 2018 - 10:52 AM
by gaelds
Hello,
has anyone managed to create a package for Aseba 1.6.1? I'm now stuck on installing a driver:
I don't know how to extract this driver from setup.exe (there's nothing in appdata/local/temp/), nor how to install it silently?
Re: [SOLVED] Aseba Studio Package
Published: Dec 7, 2018 - 10:56 AM
by agauvrit
Hello,
for driver installations where you need to approve the manufacturer's certificate, you should look at certutil.exe:
viewtopic.php?f=9&t=696&p=2103&hilit=certutil#p2103
Alexandre
Re: [SOLVED] Aseba Studio Package
Published: Dec 7, 2018 - 11:04 AM
by gaelds
Thanks, I just found the editor's .cer file, I'm going to test this code:
Code: Select all
currentpath = os.path.dirname(os.path.realpath(__file__))
run(r'C:\Windows\System32\certutil.exe -addstore "TrustedPublisher" %s\mobsya.cer' % currentpath)
run_notfatal(r'%s\dpinst_x64.exe /S /F' % currentpath)
run_notfatal(r'"aseba-bin-1.6.1-git-219247b-win32.exe" /S')