powershell do command on files
push-Location get-ChildItem -Path $PWD -Recurse | where-Object {$_.name -eq '<<filenamehere>>'} | select-Object fullname | foreach-object {& $_.fullname <<command arguments>>} pop-Location