Page 1 of 1

advanced configuration with WAPT

Published: June 1, 2021 - 3:56 PM
by Basstien
Hello,

I'm a complete beginner and I need to complete a project on WAPT.

First, I need to generate a package template for the UltraVNC software.

Then, I'm stuck on the advanced configuration of the UltraVNC package using Python.
I want to force a connection at the UltraVNC level using a Python script. So, once UltraVNC prompts for a password and username, I want to preload the login information so it can be deployed to users across the network. This way, users of the service will only need to enter the IP address and not the login credentials.

Thank you for any solutions or guidance you can provide to help me implement my project.

Thanks in advance.

PS: The WAPT version is 1.8 on Windows,
and the Windows machine where the packages are being created is a Windows Server 2012 R2.

Re: Advanced configuration with WAPT

Published: June 1, 2021 - 5:30 PM
by dcardon
Hello,
there's quite comprehensive documentation on package creation. Could you be a little more specific about the problem you're encountering and what isn't clear, perhaps even providing a code example of the issue?
Regards,
Denis

Re: Advanced configuration with WAPT

Published: June 1, 2021 - 5:50 PM
by Basstien
Thank you for your reply.

I would like to pre-register my login credentials in this console; they are attached.

I understand that the advanced configuration of the package can be done in "def session_setup", and my problem is that I want to create a Python script to save these credentials upon installation, but I don't know how to do this given my level of Python. Do you have any solutions to suggest? Thank you.

Re: Advanced configuration with WAPT

Published: June 1, 2021 - 6:05 PM
by dcardon
First, you need to figure out how to do it via the command line (modifying a configuration file, changing a registry key, etc.). Then there's the documentation, which is available, along with hundreds of example packages to help you find ideas on how to translate the command-line code into Python.

Re: Advanced configuration with WAPT

Published: June 2, 2021 - 5:18 PM
by Basstien
Perfect, thank you for your help. Do you have a link that would allow me to access those packages?

Thank you.