Hi all,
Since the R17 driver release, the setup of the driver prompts you if the install was successful or not. The messagebox has to be closed by clicking ok. Also if you type winvnc -install from the command line, there is a message box.
It would be handy to surpress these notifications with a -quiet option... This is handy in scripts to push the vnc installation.
Cheers,
Grrrippp
Celebrating the 22th anniversary of the UltraVNC: https://forum.uvnc.com/viewtopic.php?t=38031
Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: https://forum.uvnc.com/viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864
Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- Bluesky/AT Protocol: https://bsky.app/profile/ultravnc.bsky.social
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://x.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc
Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: https://forum.uvnc.com/viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864
Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- Bluesky/AT Protocol: https://bsky.app/profile/ultravnc.bsky.social
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://x.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc
Quiet install of winvnc / setupdrv
Silent driver for remote installs
I agree here or has this been done already?
About the driver-display-box...
There's a little program that can send keys and stuff to other applications. Sort of an custom automated-install program called 'AutoIt'. You can find it Here.
Your script should look something like:
After you create an executable of the script, just call the script, and the script will start the driver-setup and push Enter when it finds the info-box. It'll show and disappear in one flash
There's a little program that can send keys and stuff to other applications. Sort of an custom automated-install program called 'AutoIt'. You can find it Here.
Your script should look something like:
Code: Select all
Run("setupdrv.exe install")
WinWait("Title of info-box")
WinActivate("Title of info-box")
Send("{ENTER}")