Integrate NTLite Setup. #73

This commit is contained in:
Michael H.G. Schmidt 2022-12-31 18:53:09 +01:00
parent b7d05161ad
commit dd9cf301cd
4 changed files with 51 additions and 2 deletions

2
.gitignore vendored
View File

@ -9,6 +9,6 @@ Packages.txt
distribution
SOFTWAREBKP
tmp/
personal/
temp/
company/

View File

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

View File

@ -21,7 +21,7 @@ echo removing Desktop icon ...
del /F "%USERPROFILE%\Desktop\Rescue and Smart Assistant.lnk" 2>nul
echo moving Smart Assistant startmenu shortcut ...
move /Y %STARTMENU_USER%\"Lenovo\Rescue and Smart Assistant.lnk" %STARTMENU%\"Lenovo Smart Assistant.lnk"
move /Y %STARTMENU_USER%\"Lenovo\Rescue and Smart Assistant.lnk" %STARTMENU%\"Lenovo Smart Assistant.lnk" 2>nul
echo removing Smart Assistant startmenu folder ...
rd /S /Q %STARTMENU_USER%\"Lenovo" 2>nul

View File

@ -0,0 +1,43 @@
@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 SETTINGS=..\company\ntlite-settings.xml
set LICENSE=..\company\ntlite-license.dat
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 ...
move /Y %STARTMENU%\"NTLite\NTLite.lnk" %STARTMENU% 2>nul
echo cleanup ...
rd /S /Q %STARTMENU%\"NTLite" 2>nul
if EXIST %LICENSE% (
echo installing license ...
copy /Y %LICENSE% "%PROGRAMFILES%\NTLite\license.dat"
)
if EXIST %SETTINGS% (
echo copying settings ...
copy /Y %SETTINGS% "%PROGRAMFILES%\NTLite\settings.xml"
)
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause