Skip to content

DaPa/ultravnc

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1,228 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ultravnc

UltraVNC build steps for Windows 10 x64 and Visual Studio 2019

  1. Clone this repo

  2. Download NASM (589KB) and extract it

  1. Download DirectX Software Development Kit (DXSDK_Jun10.exe, 571.6MB) and install or only extract the "Include" and "Lib" folders
  1. If not created, create "C:\uvnc\64\xp" and "C:\uvnc\32\xp" which will contain the built x64 respectivelly x86 binaries
  • there are many Release configurations which have PostBuildEvent to copy resulted binaries in these folders
  1. If not have one, generate Windows signing certificate (see more at https://help.gamesalad.com/windows-cookbook/publishing/windows-publishing-cordova/4-sign-app/)
  • create Mine.pvk (private key file, as example use password=123) and Mine.cer (public SSL certification key):

    makecert.exe -r -sv Mine.pvk -n CN="WinOSHub" Mine.cer

  • create Mine.spc (Software Publisher Certificate):

    cert2spc.exe Mine.cer Mine.spc

  • Convert pvk+cer into Mine.pfx (Personal Exchange Format, fully encrypted, where 123 is the password used in makecert step above):

    pvk2pfx.exe -pvk Mine.pvk -pi 123 -spc Mine.spc -pfx Mine.pfx -po 456

  • Add the new certificate to the system (as administrator):

    certmgr.exe -add Mine.cer -s -r localMachine ROOT certmgr.exe -add Mine.cer -s -r localMachine TRUSTEDPUBLISHER

  1. To sign the resulted builds with the generated key, Release configurations have a PostBuildEvent with %25SignWithWindowsCertificate%25 "$(OutDir)$(TargetName)$(TargetExt)" command.
  • Edit Environment Variables and add: SignWithWindowsCertificate = "C:\Program Files (x86)\Windows Kits\10\bin\10.0.18362.0\x64\signtool.exe" sign /f D:\work\WindowsCertificate\Mine.pfx /p 456 /v
  • where Mine.pfx is the created certificate and 456 is the used password (change accordingly if different)
  1. Open ultravnc\winvnc\winvnc_VC2019.sln and build needed X64 or x86 Release configurations
  • winvnc.exe and uvnc_settings.exe should be found into C:\uvnc\64\xp\ or C:\uvnc\32\xp\
  1. Open ultravnc\vncviewer\vncviewer_VC2019.sln and build needed X64 or x86 Release configurations
  • vncviewer.exe should be found into C:\uvnc\64\xp\ or C:\uvnc\32\xp\

About

UltraVNC modified for use within Veyon

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • C 53.9%
  • C++ 25.6%
  • Assembly 8.9%
  • Makefile 3.9%
  • Shell 2.3%
  • PHP 1.7%
  • Other 3.7%