Skip to main content

Powershell: Select-String - Search for string in files

Powershell Select-String Cmdlet is similar to grep in Linux.

NAME
    Select-String

SYNOPSIS
    Finds text in strings and files.
    
ALIAS
	sls

Use Powershell Get-ChildItem and Select-String cmdlets to search for specific string in files.

Get-ChildItem -recurse | Select-String -pattern "string to search for"

Example: Search for "172.30.1.1" in all files in Data folder and subfolders

PS D:\Data> Get-ChildItem -recurse | Select-String -pattern "172\.30\.1\.1"

Popular posts from this blog

Powershell: Enable Firewall Log

We sometimes need to enable Windows firewall's log to troubleshoot. Here is how.

Powershell: head and tail command

Use head or tail to skim the first or last 5 lines.

[Microsoft Outlook]: Set .pst and .ost files location with ForcePSTPath Registry Key

Set .pst and .ost files location with ForcePSTPath Registry Key The ForcePSTPath registry key is supported by Microsoft Outlook 2003 and later. In Microsoft Outlook 2003 and 2007, it applies to new profiles only. Microsoft Outlook 2013 and Outlook 2016 it applies to new accounts created in a profile. Microsoft Outlook 2013 saves .pst in   %userprofile%\Documents\Outlook Files folder by default. We can change that default setting by adding a new string registry key called ForcePSTPath and set the value to the folder that we want to save those files. Set Microsoft Outlook 2013 always save new .pst and .ost files to D:\Data\Mail folder OST file reached the maximum size The OST File Has Reached The Maximum Size