Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: 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
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://twitter.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc

Getting new NT authentication to work

Should you have problems with the MS logon plugin, here's the place to look for help or report issues
Post Reply
nwfmorrow
Posts: 1
Joined: 2011-09-30 16:10

Getting new NT authentication to work

Post by nwfmorrow »

I was never able to get uVNC to do MS Logon authentication without writing a bat file to configure the client. The only way I found to get NT authentication to work was to use the New MS Logon and to use the mslogonacl.exe to add the users after creating the registry key to put them in. It took some digging in the forums to find this information and after testing and playing with things for several months, things are working reliably.

I hope someone find this useful and it saves them some time. :thumbs:

--------------------------------------------------------------------------------

REM Silently install UltraVNC for x64

set INSTPATH=q:\appls\installs\ultravnc_v1.0.9.6

set DESTPATH="c:\program files\ultravnc"

if not EXIST %DESTPATH% mkdir %DESTPATH%

REM Copy ini file with new settings
copy %INSTPATH%\ultravnc.ini %DESTPATH%\.
copy %INSTPATH%\uvnc.acl %DESTPATH%\.

REM The commands has to run as Administrator or it fails
reg add hklm\software\ORL\WinVNC3 /f

echo Installing UltraVNC. Please wait...
%INSTPATH%\UltraVNC_1.0.9.6_x64_Setup.exe /silent /no restart /loadinf="%INSTPATH%\ultravnc_x64_Install.inf

REM I had this before the install and the authorized user list kept coming up blank
%INSTPATH%\mslogonacl.exe /i /o %DESTPATH%\uvnc.acl
Post Reply