findfile.bat 215 B

12345678910
  1. @echo off
  2. for %%a in (C D E F G H) do (
  3. if exist %%a:\ (
  4. cd /d %%a:\
  5. for /f "delims=" %%b in ('dir /a-d /b /s "vCloud.Server.Core.dll" 2^>nul') do (
  6. echo %%b
  7. )
  8. )
  9. )
  10. exit