create Script for Share Mouse #35

This commit is contained in:
Michael H.G. Schmidt 2022-05-28 22:05:39 +02:00
parent 7ccd7c04a9
commit 6ed2a610ec
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,6 @@
[Setup]
Lang=en
Dir=C:\Program Files\ShareMouse
Group=ShareMouse
NoIcons=0
Tasks=

View File

@ -0,0 +1,25 @@
@echo off
set CONFIG=config\install-sharemouse.txt
set EXE=..\software\sharemouse-setup.exe
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo killing ShareMouse processes...
taskkill /F /IM sharemouse.exe 2>nul
echo installing ShareMouse ...
start /wait %EXE% /LOADINF=%CONFIG% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause