Hello everyone,
I'm contacting you because I'm having a small problem creating packages.
When I try to create a package using the package creation wizard, the line for silent options is grayed out, so I can't add my arguments for the .msi file I want to package.
I've had this problem since updating to Discovery Console version 2.2.1.11899, whereas I didn't have this issue with version 1.8. Did I miss a step during the update? Or does the Discovery version no longer support this feature?
Thank you very much in advance for your help!
Looking forward to hearing from you, have a great day, and see you soon!
--------------------
WAPTConsole Discovery version 2.2.1.11.899
Server OS: Windows Server 2016
Workstation OS: Windows 10
Silent option greyed out during package creation
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
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
-
Sebo_Lavie
- Messages: 3
- Registration: May 6, 2022 - 10:08
- Attachments
-
- screenshot
- wpat.jpg (11.34 KB) Viewed 2385 times
- sfonteneau
- WAPT Expert
- Messages: 2318
- Registered: July 10, 2014 - 11:52 PM
- Contact :
Hello,
this is intentional (both Discovery and Enterprise versions).
You must use the "Edit Manually" button to add additional arguments.
Then, test in PyScript/VS Code that your additional arguments work.
Simon
this is intentional (both Discovery and Enterprise versions).
You must use the "Edit Manually" button to add additional arguments.
Then, test in PyScript/VS Code that your additional arguments work.
Simon
-
Sebo_Lavie
- Messages: 3
- Registration: May 6, 2022 - 10:08
Hi Simon,
first of all, thank you for your reply.
I've installed version 4 of PyScripter, but unfortunately my skills end there; I have absolutely no idea what to do...
Seb
first of all, thank you for your reply.
I've installed version 4 of PyScripter, but unfortunately my skills end there; I have absolutely no idea what to do...
Seb
-
Sebo_Lavie
- Messages: 3
- Registration: May 6, 2022 - 10:08
Okay then...
I took a quick look at the downloaded packages and if I understood correctly at a glance...
I create my package and edit it manually, adding my arguments by hand, for example starting with silentflags='?
example :
I test if everything is OK by running an install, and if that works, I run an ibuild-upload
Am I right?!
I took a quick look at the downloaded packages and if I understood correctly at a glance...
I create my package and edit it manually, adding my arguments by hand, for example starting with silentflags='?
example :
Code: Select all
def install():
# Declaring local variables
# Installing the software
print("Installing: monlogiciel.msi")
install_msi_if_needed('monlogiciel.msi')
silentflags='/argumentA /argumentB /argumentC /log=%computername%_monlogiciel.txt'Am I right?!
