Get-ChildItem -Path "C:\YourDirectory" -Recurse | Where-Object { $_.Name -match "your-regex-pattern" }
to search all docx files:
Get-ChildItem -Path "C:\YourDirectory" -Recurse | Where-Object { $_.Name -match "*.docx" }