Windows - Find file from command line
Published: Windows Estimated reading time: ~1 minutes
Command Prompt
dir <filename> /s /p
/S include all subfolders.
/P Pause after each screen of data.
PowerShell
Get-ChildItem -Path V:\Myfolder -Filter CopyForbuild.bat -Recurse -ErrorAction SilentlyContinue -Force