OK. first thing you need to do is get rid of every instance of PAUSE
The easiest way to do this would be...
1. Right click the RUN_ME.cmd file and "Open With NotePad"
2. Press CTRL+H (Or go to the tab EDIT and choose REPLACE)
3. In the Find What box type: PAUSE
4. In the Replace With box type: REM ### Siginet PAUSE (You must at least use REM but I add the other text so I can easily reference back to it later if I want to put the changes back to normal.)
5. Now click on the Replace All button.
It should quickly make all of the changes thus far.
6. Find and replace each section below:
-------------------------------------------------------------------------------------------------------------------------------
Find "GUIRunOnce" or "RunOnceEx" Options:
Quote
SET /P CHOICE=" "
IF /I '%CHOICE%'=='G' GOTO CPLs_GUIRunOnce
IF /I '%CHOICE%'=='R' GOTO CPLs_RunOnceEx
IF NOT /I '%CHOICE%'=='G' IF NOT /I '%CHOICE%'=='R' GOTO REPEAT_SETTING_1
Quote
REM ### Siginet SET /P CHOICE=" "
REM ### Siginet IF /I '%CHOICE%'=='G' GOTO CPLs_GUIRunOnce
REM ### Siginet IF /I '%CHOICE%'=='R'
GOTO CPLs_RunOnceEx
REM ### Siginet IF NOT /I '%CHOICE%'=='G' IF NOT /I '%CHOICE%'=='R' GOTO REPEAT_SETTING_1
The choice I reccommend is in blue... but you can replace it with the red text if you wish.
-------------------------------------------------------------------------------------------------------------------------------
Find "SET ROE_NUMBER" Options:
SET ROE_NUMBER= SET /P ROE_NUMBER=" " IF /I '%ROE_NUMBER%'=='' GOTO REPEAT_CPLs_RunOnceEx
Replace With:
Quote
REM ### Siginet SET /P ROE_NUMBER=" "
REM ### Siginet IF /I '%ROE_NUMBER%'=='' GOTO REPEAT_CPLs_RunOnceEx
-------------------------------------------------------------------------------------------------------------------------------
Find "KtD_ENABLE" or "KtD_DISABLE" Options:
Quote
SET /P CHOICE=""
IF /I '%CHOICE%'=='Y' GOTO KtD_ENABLE
IF /I '%CHOICE%'=='N' GOTO KtD_DISABLE
IF NOT /I '%CHOICE%'=='Y' IF NOT /I '%CHOICE%'=='N' GOTO REPEAT_SETTING_2
Replace with:
Quote
REM ### Siginet SET /P CHOICE=""
REM ### Siginet IF /I '%CHOICE%'=='Y' GOTO KtD_ENABLE
REM ### Siginet IF /I '%CHOICE%'=='N'
GOTO KtD_DISABLE
REM ### Siginet IF NOT /I '%CHOICE%'=='Y' IF NOT /I '%CHOICE%'=='N' GOTO REPEAT_SETTING_2
The choice I reccommend is in blue... but you can replace it with the red text if you wish.
-------------------------------------------------------------------------------------------------------------------------------
You can setup your RUN_ME.cmd file any way you like. The settings I chose above work best for me... and they save a lot of room on the disk. In my opinion those are the best settings.
Good luck... and post here any questions pertaining to this tutorial.
This post has been edited by Siginet: 26 August 2005 - 11:32 AM



Help

Back to top








