Create script for Tight-VNC server #55

This commit is contained in:
Michael H.G. Schmidt 2022-12-12 16:30:04 +01:00
parent dbb9858e4b
commit ba2fe7df7c
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,24 @@
@echo off
set SOFTWARE=..\software
set MSI=vnc-setup.msi
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %SOFTWARE%\%MSI% (
echo ERROR: %SOFTWARE%\%MSI% not found!
exit /b
)
echo ####### %0 #######
echo installing vnc (server) ...
cd %SOFTWARE%
@echo on
msiexec /i %MSI% /qn
@echo off
echo cleanup ...
del /F %STARTMENU%\"TightVNC\Visit TightVNC Web Site.lnk" 2>nul
echo ####### %0 #######

View File

@ -28,3 +28,4 @@ rem create symbolic link ...
mklink %TOOLS%\vnc.exe %TOOLS%\tvnviewer.exe 2>nul mklink %TOOLS%\vnc.exe %TOOLS%\tvnviewer.exe 2>nul
echo ####### %0 ####### echo ####### %0 #######