[RESOLVED] Aseba Studio Package

Questions about WAPT Packaging / Requests and help regarding Wapt packages.
Forum Rules
Community Forum Rules
* English support on www.reddit.com/r/wapt
* French community support is available on this forum
* Please prefix the topic title with [RESOLVED] if it is resolved.
* Please do not edit a topic that is tagged [RESOLVED]. Open a new topic referencing the old one.
* Specify the installed WAPT version, full version, and build number (2.2.1.11957 / 2.2.2.12337 / etc.) as well as the Enterprise/Discovery edition.
* Versions 1.8.2 and earlier are no longer supported. The only questions accepted regarding version 1.8.2 are related to upgrading to a supported version (2.1, 2.2, etc.).
* Specify the server OS (Linux/Windows) and version (Debian Buster/Bullseye - CentOS 7 - Windows Server 2012/2016/2019).
* Specify the OS of the administration/package creation machine and the machine with the problematic agent, if applicable (Windows 7/10/11/Debian 11/etc.).
* Avoid asking multiple questions when opening a topic, otherwise it may be ignored. If there are multiple topics, open separate topics, preferably one after the other and not all at the same time (i.e., do not spam the forum).
* Include code snippets, screenshots, and other images directly in the post. Links to Pastebin, Bitly, and other third-party sites will be systematically removed.
* As with any community forum, support is provided voluntarily by members. If you require commercial support, you can contact Tranquil IT's sales department at 02.40.97.57.55
Locked
Gaelds
Messages: 254
Registration: Nov 22, 2015 - 08:37

June 8, 2018 - 09:31

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?
User avatar
dcardon
WAPT Expert
Messages: 1932
Registration: June 18, 2014 - 09:58
Location: Saint Sébastien sur Loire
Contact :

June 8, 2018 - 6:15 PM

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
Denis Cardon - Tranquil IT
Share your experiences on WAPT! Send us your blog and article URLs in the "Your Opinion of the forum, and we'll feature them on the WAPT
Gaelds
Messages: 254
Registration: Nov 22, 2015 - 08:37

June 11, 2018 - 08:51

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".
Gaelds
Messages: 254
Registration: Nov 22, 2015 - 08:37

December 7, 2018 - 10:52 AM

Hello,

has anyone managed to create a package for Aseba 1.6.1? I'm now stuck on installing a driver:
Picture

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?
User avatar
agauvrit
WAPT Expert
Messages: 238
Registration: Nov 17, 2016 - 10:25
Location: Nantes
Contact :

December 7, 2018 - 10:56 AM

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
Gaelds
Messages: 254
Registration: Nov 22, 2015 - 08:37

December 7, 2018 - 11:04 AM

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')
Locked