Here’s how you to search the filesystem for a specifically named file using Powershell:
Get-Childitem -Path C:\ -Include *JimBobFile* -Recurse -ErrorAction SilentlyContinue
Here’s how you to search the filesystem for a specifically named file using Powershell:
Get-Childitem -Path C:\ -Include *JimBobFile* -Recurse -ErrorAction SilentlyContinue