From dd9cf301cda79ca09cf5d44eae4bf4532463a033 Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Sat, 31 Dec 2022 18:53:09 +0100 Subject: [PATCH] Integrate NTLite Setup. #73 --- .gitignore | 2 +- optional/config/install-ntlite.txt | 6 +++++ optional/install-motorescue.cmd | 2 +- optional/install-ntlite.cmd | 43 ++++++++++++++++++++++++++++++ 4 files changed, 51 insertions(+), 2 deletions(-) create mode 100644 optional/config/install-ntlite.txt create mode 100644 optional/install-ntlite.cmd diff --git a/.gitignore b/.gitignore index b84f1ac..80dde97 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,6 @@ Packages.txt distribution SOFTWAREBKP tmp/ -personal/ +temp/ company/ diff --git a/optional/config/install-ntlite.txt b/optional/config/install-ntlite.txt new file mode 100644 index 0000000..c8b0cee --- /dev/null +++ b/optional/config/install-ntlite.txt @@ -0,0 +1,6 @@ +[Setup] +Lang=English +Dir=C:\Program Files\NTLite +Group=NTLite +NoIcons=0 +Tasks= diff --git a/optional/install-motorescue.cmd b/optional/install-motorescue.cmd index 1a89ab9..63ae65d 100644 --- a/optional/install-motorescue.cmd +++ b/optional/install-motorescue.cmd @@ -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 diff --git a/optional/install-ntlite.cmd b/optional/install-ntlite.cmd new file mode 100644 index 0000000..7ef5ce6 --- /dev/null +++ b/optional/install-ntlite.cmd @@ -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 +