The following is a basic script to search for files with specific terms in the title or path. For more advanced filters, check the linked documentation.

Process

$Path = "C:\Path\To\Folder"
$Include = @("Search Term 1","Search Term 2")
Get-Childitem –Path $Path -Include $Include -Recurse -ErrorAction SilentlyContinue

More Information

Get-Childitem

Use Windows PowerShell to search for files