add more scripts to automatically update:

- last updated elx file
- all elx files
This commit is contained in:
2026-05-26 13:36:48 +02:00
parent 60fc9e8d07
commit 0fe463338a
6 changed files with 97 additions and 64 deletions
+10
View File
@@ -0,0 +1,10 @@
@echo off
SETLOCAL EnableDelayedExpansion
echo %cmdcmdline% | findstr /i /c:"%~nx0" >NUL && set iscommandline=1
echo %PSModulePath% | findstr /i /c:"%USERPROFILE%" >NUL && set ispowershell=1
cd /D "%~dp0"
@powershell -NoProfile -ExecutionPolicy Bypass -Command .\scripts\extract-elx-internals-last-updated.ps1
IF DEFINED iscommandline IF NOT DEFINED ispowershell pause
ENDLOCAL