Files
elixforms-moduli/extract-elx-internals-last-updated.bat
T
administrator 0fe463338a add more scripts to automatically update:
- last updated elx file
- all elx files
2026-05-26 13:36:48 +02:00

11 lines
390 B
Batchfile

@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