@echo off&set FileName=%~n0&shift :: ============================================= :: AutoHelp PlugLab Concept: 2006 by Reatogo :: ============================================= :: Help Info: :: ======================= set Routine_Type=4 :: 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=CreateStartINF set RoutineAuthor=Siegfried set Using_work_from= set Example_call_1=%%CreateStartINF%% set Example_call_2= set Example_call_3= set text_01=Prints a Start.inf set text_02=using the variables in the head of the autoHelp.cmd. if "%~1" == "GetHelp" goto :EOF echo.&echo %* :: ============================================= if exist start.inf.txt goto :EOF ECHO ; PE Builder v3 plug-in INF file> start.inf ECHO ; %INF_NAME%>> start.inf ECHO ; PlugLab autoHelp plugin created by %Created_By%>> start.inf if not "%Based_On_Plug_By%" == "" ECHO ; Based on a plugin by %Based_On_Plug_By% >> start.inf ECHO ; Last Revision %Last_Revision_Date% >> start.inf ECHO ; Tested on: %Tested_On% >> start.inf ECHO. >> start.inf ECHO [Version]>> start.inf ECHO Signature= "$Windows NT$">> start.inf ECHO. >> start.inf ECHO [PEBuilder]>> start.inf ECHO Name="%Prog_Name_In_Header_Pre% %Prog_Name_In_Header% -Press CONFIG to Enable-">> start.inf ECHO Enable=0 >> start.inf ECHO config=%autoHelpCMD%>> start.inf ECHO Help="HELP.htm">> start.inf ECHO. >> start.inf ECHO [SourceDisksFiles]>> start.inf ECHO "please run autoHelp to configure your plugin"=a,,1 >> start.inf goto :EOF :: =============================================