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

check vnc version

Here you will find help for frequently asked questions as well as for your specific question
Post Reply
filodipane
Posts: 2
Joined: 2025-01-02 09:06

check vnc version

Post by filodipane »

How can extract UltraVnc version by command line prompt or powershell ?
My target is to check vnc version to update It if It was installed older version
User avatar
rvk
8
8
Posts: 9
Joined: 2022-06-23 08:49

Re: check vnc version

Post by rvk »

Commandline

Code: Select all

wmic datafile where name='c:\\path\\winvnc.exe' get version
Powershell

Code: Select all

(Get-Item -Path 'C:\path\winvnc.exe').VersionInfo | Format-List -Force
Post Reply