w10install/optional/install-sharemouse.cmd
Michael H.G. Schmidt 797daa23a1 normal Users ... #61
2022-11-13 22:12:39 +01:00

26 lines
497 B
Batchfile

@echo off
call check-for-admin
set CONFIG=config\install-sharemouse.txt
set EXE=..\software\sharemouse-setup.exe
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