B00ze wrote:
> On 2015-11-26 16:09, Tom Del Rosso
> <
fizzbin...@that-google-mail-domain.com> wrote:
>
>> I never heard of those, so don't know what version might have them.
>>
>> I use a batch file:
>>
>> D:\UTIL\FINDEXE.CMD
>>
>> @echo off
>> rem search without adding ext
>> if not "%~$path:1"=="" echo %~$path:1
>>
>> rem try adding each ext in pathext variable
>> if not [%1]==[] (
>> for %%e in (%pathext%) do (
>> for %%f in (%1%%e) do (
>> if not "%%~$path:f"=="" (
>> echo %%~azt$path:f
>> )
>> )
>> )
>> )
>
> Woa, excellent little script! I made a "FindInPath" script a long time
> ago, but I ended-up parsing the PATH manually one entry by one entry,
> doing a If Exist on each element of the path; I never even noticed
> that there was %~$path! This is so much easier! Thanks!
>
> Regards,
It provides a little useful info. :)