@echo off&set FileName=%~n0&shift :: ============================================= :: AutoHelp PlugLab Concept: 2006 by Reatogo :: ============================================= :: Help Info: :: ======================= set Routine_Type=5 :: 1=Getting Data 2=Prompts 3=Getting Files 4=Creating Files 5=General set Routine_Vers=1 set Routine_Date=2007-02-15 set RoutineName=ShowIcons set RoutineAuthor=Siegfried set Using_work_from= set Example_call_1=%%ShowIcons%% "%%ProgramFiles%%\Ahead\Nero\nero.exe" set Example_call_2= set Example_call_3= set text_01=Shows the icons and their IDs in a file. set text_02= set text_03=NOTE: This script may be of can be useful by itself but the main purpose for including it was to serve as a template for executing custom AutoIt a3x scripts. set text_04=Example: set text_05=Shortcall: %%MYROUTINE%% "parameter" "etc" set text_06=FUNCs\MYROUTINE.cmd runs APPs\MYROUTINE.a3x set text_07=No change to the code of this CMD is required set text_08= set text_09=Template by Reatogo if "%~1" == "GetHelp" goto :EOF echo.&echo %* :: ============================================= set script="%APPs%\%FileName%.a3x" %FINDAPP% "%FileName%.a3x" "APPs" %xWIZ% %script% "%~1" "%~2" "%~3" "%~4" "%~5" "%~6" "%~7" "%~8" "%~9" if exist "%temp%\TempLab.cmd" ( call "%temp%\TempLab.cmd" del "%temp%\TempLab.cmd" ) goto :EOF