@echo off&set FileName=%~n0&shift :: ============================================= :: AutoHelp PlugLab Concept: 2006 by Reatogo :: ============================================= :: Help Info: :: ======================= set Routine_Type=2 :: 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=Extro set RoutineAuthor=Siegfried set Using_work_from= set Example_call_1=%%Extro%% set Example_call_2= set Example_call_3= set text_01=Extro prompt to conclude the plugin configuration. set text_02=. set text_03=1. Renames Start.inf to Start.inf.txt set text_04=2. Extro prompt set text_05=3. Refresh the PEbuilder plugin dialog to show the correct enable status set text_06=4. goto :EOF if "%~1" == "GetHelp" goto :EOF echo.&echo %* :: ============================================= if exist start.inf ( if exist start.inf.txt del start.inf.txt ren start.inf start.inf.txt ) %IniGetSection2Vars% "SCRIPTS\PlugSettings.oni" "ExtroPromptFlags" "s" %MessageBox% "info" "DONE" "Your plugin is configured and enabled." "nomsg" if "%Ignore_Flags%" == "1" goto NoReminder if "%ScreenShot_Present%" == "1" if "%Addl_Info_HTM_Completed%" == "1" if "%URLs_Complete%" == "1" goto NoReminder set URL_msg= if not "%URLs_Complete%" == "1" set URL_msg=InfoURL ForumURL DownloadURL: At least one of the URLs is not defined yet. set ScreenShot_msg= if not "%ScreenShot_Present%" == "1" set ScreenShot_msg=ScreenShot: Missing. set AddlInfo_msg= if not "%Addl_Info_HTM_Completed%" == "1" set AddlInfo_msg=Addl_Info.htm: No info added. %MessageBox% "info" "Reminder" "Reminder: ~~%URL_msg% ~~%ScreenShot_msg% ~~%AddlInfo_msg% ~~ ~~Ignore_Flags=1 in PlugSettings.ini to supress this prompt. Or solve the issues." "nomsg" :NoReminder %RefreshPEbuilder% goto :EOF :: =============================================