w10install/optional/install-ntlite.cmd

33 lines
768 B
Batchfile
Raw Normal View History

2022-12-31 18:53:09 +01:00
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set CONFIG=config\install-ntlite.txt
set EXE=..\software\ntlite-setup.exe
set STARTMENU=%PROGRAMDATA%\"Microsoft\Windows\Start Menu\Programs"
set STARTMENU_USER=%APPDATA%\"Microsoft\Windows\Start Menu\Programs"
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing NTLite ...
start /wait %EXE% /LOADINF=%CONFIG% /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS
echo moving NTLite startmenu shortcut ...
2023-01-15 17:52:06 +01:00
mkdir %STARTMENU%\Tools 2>nul
move /Y %STARTMENU%\"NTLite\NTLite.lnk" %STARTMENU%\Tools 2>nul
2022-12-31 18:53:09 +01:00
echo cleanup ...
rd /S /Q %STARTMENU%\"NTLite" 2>nul
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause