I just installed WinVNC on Windows XP Pro. Now everytime the computer starts up I get the following error message:
No password has been set & this machine has been preconfigured to prevent users from setting their own.
You must contact a System Administrator to configure WinVNC properly.
How can I get rid fo this?
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
- 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
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
- 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
No password has been set & this machine....
Re: No password has been set & this machine....
Are you logged in as an administrator when setting up UVNC ??
Bevtech
Windows XP Home, Pro SP2, Windows 2003 SBS server SP2(EN), Windows Media Center Editon 2005,Windows Vista Home Prem.,Fedora Core 6,Win9X, PChelpware Rel 1.0,
UVNC V 1.0.8.2
User not developer..
Windows XP Home, Pro SP2, Windows 2003 SBS server SP2(EN), Windows Media Center Editon 2005,Windows Vista Home Prem.,Fedora Core 6,Win9X, PChelpware Rel 1.0,
UVNC V 1.0.8.2
User not developer..
Re: No password has been set & this machine....
I have the same problem, I'm login as administrator when I setup UltraVNC
Re: No password has been set & this machine....
Any solutions to this issue??
Re: No password has been set & this machine....
See this thread [topic=8929]Can't set password when running as service[/topic]
Re: No password has been set & this machine....
I use a script to silently install Mirror driver and then silently install UVNC Service.
To avoid prompt for service password, I do a registry import before installing the UVNC service, so the service password has a predefined default value.
The value is, as you surely know by heart, HKLM\SOFTWARE\ORL\WinVNC3\Default. I just exported the value from an already installed system to a VNCDEF.REG file and then use this script (install exes has been renamed for convenience):
net start winvnc
net stop winvnc && %~dp0winvnc -remove
%windir%\regedit /s %~dp0vncdef.reg
%~dp0uvnchdrv /verysilent
%~dp0uvncinst /verysilent
pushd %programfiles%\Ultravnc
winvnc -sinstall
:again
net stop winvnc
net start winvnc || goto again
To avoid prompt for service password, I do a registry import before installing the UVNC service, so the service password has a predefined default value.
The value is, as you surely know by heart, HKLM\SOFTWARE\ORL\WinVNC3\Default. I just exported the value from an already installed system to a VNCDEF.REG file and then use this script (install exes has been renamed for convenience):
net start winvnc
net stop winvnc && %~dp0winvnc -remove
%windir%\regedit /s %~dp0vncdef.reg
%~dp0uvnchdrv /verysilent
%~dp0uvncinst /verysilent
pushd %programfiles%\Ultravnc
winvnc -sinstall
:again
net stop winvnc
net start winvnc || goto again