Send a message (MessageBox) / .reg

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
AdriAlpes
Messages: 4
Registration: July 1, 2020 - 12:19

July 1, 2020 - 12:37

Hello everyone,

I'd like to create a MessageBox in the `def install()` function to inform the user that they must restart their machine after installing the package (registry key declaration in the session setup() function).

However, I'm getting a timeout when I install the package, even though I don't encounter any problems on my own machine.

Here's the code I'm using:
`win32ui.MessageBox('test','test')`

or

`os.system('cmd /c "msg /TIME:1750 %username% test"')`


I tried to work around the problem by writing the key (HKCU) in the `def install()` function, but it doesn't work. Is it possible to install the package as the machine's user account, rather than using the System account, to write the key to the HKCU?

Another inconclusive test: I copied a .reg file to the root of my hard drive and then ran it with this code:

`run(r'REG IMPORT C:\test.reg')`

or

`subprocess.call(['reg', 'import', C:\test.reg])`.


Do you have any idea what the problem might be?

Thank you in advance for your help.

Best regards,

Adrien
User avatar
vcardon
WAPT Expert
Messages: 278
Registration: Oct 06, 2017 - 10:55 p.m.
Location: Nantes, France

July 1, 2020 - 2:08 PM

Hello,

take a look here: https://lists.tranquil.it/pipermail/wap ... 04007.html

Regards,

Vincent
Vincent CARDON
Tranquil IT
AdriAlpes
Messages: 4
Registration: July 1, 2020 - 12:19

July 1, 2020 - 2:13 PM

Hello Vincent,

Thank you for your reply, I'll try that right away.

Have a good afternoon,

Best regards,

Adrien
User avatar
sfonteneau
WAPT Expert
Messages: 2318
Registered: July 10, 2014 - 11:52 PM
Contact :

July 1, 2020 - 2:49 PM

Code: Select all

msg /TIME:1750  * test
Alternatively, in Wapt Enterprise:

Code: Select all

from waptenterprise.waptservice.enterprise import show_message
show_message(None,{'msg':'Hello !'},'Simon Fonteneau')
AdriAlpes
Messages: 4
Registration: July 1, 2020 - 12:19

July 1, 2020 - 4:04 PM

Hello,

Thank you for your reply. I used "vcardon's" solution, which works, thanks again!

Do you have any ideas for the .reg file? It's a large registry modification with 300 keys to change.

Thank you in advance and have a good afternoon

. Best regards

Adrien
Locked