Command Prompt

dir <filename> /s /p
/S     include all subfolders.
/P   Pause after each screen of data.

https://ss64.com/nt/dir.html

PowerShell

Get-ChildItem -Path V:\Myfolder -Filter CopyForbuild.bat -Recurse -ErrorAction SilentlyContinue -Force

https://blogs.technet.microsoft.com/heyscriptingguy/2016/06/27/use-windows-powershell-to-search-for-files/