Related:
- Batch script to search for a file in a folder and subfolders
- Windows 10 iso file download 64-bit - Download - Windows
- Illustrator could partially read this file ✓ - Office Software Forum
- Anvi folder locker reset key - Guide
- How to search for a word on a page - Guide
- Kmspico zip file download - Download - Other
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