Ultravnc
Is there a way to set UltraVNC to silent install and as a service?
Thanks
Sam
Thanks
Sam
0 Comments
[ + ] Show comments
Answers (4)
Please log in to answer
Posted by:
spless
12 years ago
from http://www.uvnc.com/install/installation.html
Automate Installation
If you need to install UltraVNC on a large number of computers, you might consider automating the installation.
The following command line parameters can be passed to the setup:
/dir="Dirname"
Sets installation directory to Dirname.
/no restart
Suppresses a reboot at the end of the installation.
Not required since the installation no longer requires are boot.
/silent or /very silent
Suppresses either pop-up of dialog boxes or any GUI at all.
/loadinf="Filename"
Loads the configuration file Filenamefor the installation.
This configuration file can be generated by going through setup with UltraVNC-xxxx-Setup.exe /saveinf="Filename".
Filename should be fully qualified.
/log
Writes a log file to the Temp directory.
Could be used for debugging.
Automate Installation
If you need to install UltraVNC on a large number of computers, you might consider automating the installation.
The following command line parameters can be passed to the setup:
/dir="Dirname"
Sets installation directory to Dirname.
/no restart
Suppresses a reboot at the end of the installation.
Not required since the installation no longer requires are boot.
/silent or /very silent
Suppresses either pop-up of dialog boxes or any GUI at all.
/loadinf="Filename"
Loads the configuration file Filenamefor the installation.
This configuration file can be generated by going through setup with UltraVNC-xxxx-Setup.exe /saveinf="Filename".
Filename should be fully qualified.
/log
Writes a log file to the Temp directory.
Could be used for debugging.
Posted by:
spless
12 years ago
here is the .Bat file that i have used.
Mkdir "C:\program Files\ultravnc"
REM Copy File from server and put into directory
copy \\server\install\applications\VNC\ultravnc\ultravnc.ini "C:\program files\ultravnc\ultravnc.ini"
REM Run install
\\server\install\applications\VNC\ultravnc-102-setup.exe /loadinf=\\\server\install\applications\VNC\ultravncInstall.inf /silent /log
REM Run CMD
net start WinVNC
REM Run CMD
winvnc -servicehelper
Mkdir "C:\program Files\ultravnc"
REM Copy File from server and put into directory
copy \\server\install\applications\VNC\ultravnc\ultravnc.ini "C:\program files\ultravnc\ultravnc.ini"
REM Run install
\\server\install\applications\VNC\ultravnc-102-setup.exe /loadinf=\\\server\install\applications\VNC\ultravncInstall.inf /silent /log
REM Run CMD
net start WinVNC
REM Run CMD
winvnc -servicehelper
Comments:
-
Maybe i have something wrong, which is prolly the case - spless 12 years ago
Posted by:
nwhistler
12 years ago
If you look at the bottom of this page, the install switches are provided. http://www.uvnc.com/install/installation.html
Comments:
-
@nwhistler Thanks for the info but if i under stand the instruction correctly there is nothing to set UltraVNC to install as a service. - spless 12 years ago
Posted by:
Hammer1790
12 years ago
During a fresh install the following things are done:.
Create installation directory (default: %Programfiles%\UltraVNC) and copy files to it.
Add shortcuts to start menu and desktop.
Associate .vnc with UltraVNC viewer by adding registry keys \\HKEY_CLASSES_ROOT\.vnc and \\HKEY_CLASSES_ROOT\VncViewer.Config.
Configure Admin Properties by adding registry keys under \\HKEY_LOCAL_MACHINE\SOFTWARE\ORL\.
Register winvnc service by running winvnc -reinstall.
Start service by running net start WinVNC.
Start systray icon by running winvnc -servicehelper.
Configure MS-Logon II ACL by running MSLogonACL /i /o acl.txt.
An upgrade requires the following additional tasks:.
Stop winvnc service by running net stop WinVNC.
Create installation directory (default: %Programfiles%\UltraVNC) and copy files to it.
Add shortcuts to start menu and desktop.
Associate .vnc with UltraVNC viewer by adding registry keys \\HKEY_CLASSES_ROOT\.vnc and \\HKEY_CLASSES_ROOT\VncViewer.Config.
Configure Admin Properties by adding registry keys under \\HKEY_LOCAL_MACHINE\SOFTWARE\ORL\.
Register winvnc service by running winvnc -reinstall.
Start service by running net start WinVNC.
Start systray icon by running winvnc -servicehelper.
Configure MS-Logon II ACL by running MSLogonACL /i /o acl.txt.
An upgrade requires the following additional tasks:.
Stop winvnc service by running net stop WinVNC.