Related:         
- Batch script to search for a file in a folder and subfolders
- How to search for a word within a website - Guide
- How to search for a word in a pdf - Guide
- Batch copy folder ✓ - Programming Forum
- Anvi folder locker reset key - Guide
- Cannot find script file startupcheck.vbs - Viruses & Security Forum
2 responses
                        
                            
                    well I have something defrent , I wanted to do the same thing I think , 
that's my batch :
@echo off
set pth=%*
cd %pth%
title Searching in %pth% and all sub directories .
:begin
set LF=
cls
echo ToExit - Don't Search [Hit ENTER]
set /p LF=Looking For :
if x%LF%==x goto eof
dir /s %LF%
echo.
echo Done.
pause>nul
goto begin
:eof
cls
echo Thank You .
pause>nul
and add to the registry : [HKEY_CLASSES_ROOT\Folder\shell\Search bat\command]
@="\"C:\\Program Files\\Search\\search.bat\" %1"
that's what I have , I use it all the time...
            that's my batch :
@echo off
set pth=%*
cd %pth%
title Searching in %pth% and all sub directories .
:begin
set LF=
cls
echo ToExit - Don't Search [Hit ENTER]
set /p LF=Looking For :
if x%LF%==x goto eof
dir /s %LF%
echo.
echo Done.
pause>nul
goto begin
:eof
cls
echo Thank You .
pause>nul
and add to the registry : [HKEY_CLASSES_ROOT\Folder\shell\Search bat\command]
@="\"C:\\Program Files\\Search\\search.bat\" %1"
that's what I have , I use it all the time...
 
        
    
    
    
    
Nov 26, 2011 at 11:46 AM