Silent install of ver 1.0.8.2 without downloading files

Post Reply
novasian
Posts: 2
Joined: 2011-03-12 05:31

Silent install of ver 1.0.8.2 without downloading files

Post by novasian »

I've spent quite some time in the forum and still have not been able to figure out how I can run the installation completely silent with a batch script and not download the "optional files". The script will run and install winvnc server and start the service, but a pop-up shows the download progress for these files: SChook.dll, cad.exe, install_silent.bat, etc...

What are these files and do I need them? I'm deploying the script to the end user's pc and they might not have the proper Internet connection to go outside of our network for these downloads.

I tested it on Win XP Pro and 7 Pro.

Any advice?

Code: Select all

@echo off

"C:\App Deploy\UltraVNC_1.0.8.2_Setup.exe" /verysilent /loadinf="uvncinstall.inf" /log

copy "C:\App Deploy\ultravnc.ini" "C:\Program Files\UltraVNC\ultravnc.ini" /Y

net start uvnc_service
install.inf file

Code: Select all

[Setup]
Lang=EN
Dir=C:\Program Files\UltraVNC
Group=UltraVNC
NoIcons=1
SetupType=FULL
Components=ultravnc_server
Tasks=installservice,startservice,associate
[/code]
Post Reply