How to search a word in all files in a Folder – Powershell Script

To search a word in all files in a Folder using Powershell Script


$i=0
foreach ($filename in Get-ChildItem -Path FOLDERNAME\ -recurse | Select-String -pattern "SEARCHSTRING" | Select-Object -Unique path) 
{
split-path $filename.path -leaf -resolve
$i++
}
Write-host 'Total Files='$i

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s