I've updated UltraVNC 1.0.8.2 to 1.0.9.5 through SCCM.
I've reviewed the installation and I've seen what it does is copy the following files to your computer:
check_install.exe
schook.dll
SecureVNCPlugin.dsm
unins000.exe
unins000.msg
unvc_settings.exe
winvnc.exe
My objective was to update UltraVNC without restarting the computer.
I prepared a batch file that includes the following:
net stop "uvnc_service"
xcopy "\\server\PkgSourceFiles\UltraVNC\*.*" "%programfiles%\ultravnc" /Y
net start "uvnc_service"
In this way it works correctly and is not necessary to restart the pc.
I converted bat file to exe using BatToExe program.
So I distributed by SCCM without problems on some test machines.
The only problem I've seen is that in Add / Remove Programs is listed as version 1.0.8.2 installed, but it really is version 1.0.9.5
Has anyone done this?