Below you will find the text of two batch files: RunScanline.bat and CallScanline.bat. You will create a new folder named ScanLine for RunScanline.bat. Create the new folder D:\Documents and Settings\All Users\Start Menu\Programs\Scanline. Install RunScanline.bat in the D:\Documents and Settings\All Users\Start Menu\Programs\ScanLine folder. Install CallScanline.bat and sl.exe in D:\Windows @echo off & setlocal enableextensions REM START RunScanline.bat REM REM Install RunScanline.bat in the D:\Documents and Settings\All Users\Start Menu\Programs\ScanLine folder. REM echo Scanline Port Scanner echo. SET /P StartIP=Enter Starting IP Address: SET /P EndIP=Enter Ending IP Address: call CallScanline.bat %StartIP% %EndIP% > "D:\Documents and Settings\All Users\Start Menu\Programs\ScanLine\ScanReport.txt" type "D:\Documents and Settings\All Users\Start Menu\Programs\ScanLine\ScanReport.txt" pause REM END RunScanline.bat @echo off REM START CallScanline.bat REM REM Install CallScanline.bat and sl.exe in D:\Windows REM sl.exe -bhTU %1-%2 REM END CallScanline.bat