w10install/drivers/install-cyberjack.cmd

31 lines
692 B
Batchfile
Raw Permalink Normal View History

2021-03-13 00:30:15 +01:00
@echo off
set EXE=..\software\cyberjack-setup.exe
2021-03-13 00:40:26 +01:00
set STARTMENU="%PROGRAMDATA%\Microsoft\Windows\Start Menu\Programs"
2021-03-13 00:30:15 +01:00
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
2021-04-25 20:50:49 +02:00
if EXIST "%ProgramFiles(x86)%\REINER SCT\cyberJack\cJCC.exe" (
echo ERROR: Reiner SCT Cyberjack already installed!
exit /b
)
2021-03-13 00:30:15 +01:00
echo ####### %0 #######
2021-03-13 13:06:52 +01:00
echo installing Reiner SCT Cyberjack ...
2021-03-13 00:40:26 +01:00
start /wait %EXE%
2021-04-25 20:28:50 +02:00
echo removing CyberJack startmenu folder ...
2021-09-05 17:46:54 +02:00
rd /S /Q %STARTMENU%\"REINER SCT cyberjack" 2>nul
2021-03-13 00:44:33 +01:00
2021-09-05 17:46:54 +02:00
echo renaming CyberJack desktop shortcut ...
copy /Y startmenu\CyberJack.lnk %STARTMENU%
del /F %PUBLIC%\"Desktop\cyberjack*.*" 2>nul
2021-03-13 00:30:15 +01:00
echo ####### %0 #######
pause
2021-03-13 00:40:26 +01:00