Hmmm.. Good idea and has me trying different approaches toward success but not yet
Here's what i find
1. As mentioned in last post
Code:
[B]findstr /c:Friendly /m /i /s /d:c:\Windows *.inf[/B]
Works fine in XP but not so in Vista
2. I tried your suggestion
Code:
[B]findstr /c:Friendly /m /i /s /d:c:\Windows .inf[/B]
Returns within 30 seconds with no match
3. But gives me a thought, so i try
Code:
[B]findstr /c:Friendly /m /i /s /d:c:\Windows "*.inf"[/B]
Provides same list of directories like in case 1) above and then appears to hang
4. So decided to next try try with full filename (no wildcard)
Code:
[B]findstr /c:Friendly /m /i /s /d:c:\Windows usbaapl.inf[/B]
It completes within 30 seconds and correctly returns System32\DriverStore\FileRepository\usbaapl.inf_d9da5e84\usbaapl.inf
5. Hmm.. so i'm guessing either
a) The wild card has it hung up on some huge or hidden or permission access related directory that is giving me grief or
b) The wild card is just gonna make it take a really long time (i have limited remote logon access to a vista machine so haven't tried lettin it run yet for a real long time)
In any case, will let you know should i figure this out! Thanks for the input :approve: