Posted On March 7, 2022

PowerShell: Search File Contents Matching a Phrase or String

kimconnect 0 comments
blog.KimConnect.com >> Codes >> PowerShell: Search File Contents Matching a Phrase or String
$searchDirectories='C:\users\Public\.jenkins\jobs'
$searchDepth=1
$fileNameScope='*.xml'
$searchString='kimconnect'

# Select the files and perform the search in each file
$files=Get-ChildItem -Path $searchDirectories -Depth $searchDepth -Filter $fileNameScope
$files|%{
    $x=Select-String -Path $_ -Pattern $searchString;
    if($x){
        write-host "File $_ contains $searchString`r`n$x`r`n"
    }
    }

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Mods to Zencart

Important Mods to Zencart OC GOLD® setup:   Zens Footer copyright info is moded at…

Python: Package Installer for Python (PIP)

This comes preinstalled with Python 3.4 or higher. Similar to the Microsoft PowerShell Gallery, Python.org…

PowerShell: Set Hyper-V Cluster Quorum

# setClusterQuorum.ps1 # version 0.01 $clustername=$null $clusterQuorum="\\FILESHERVER007\CLUSTER007" $resetPrior=$false function setClusterQuorum($clusterName,$clusterQuorum,$resetPrior=$false){ # Get clustername, if not…