= Powershell =
 * https://docs.microsoft.com/en-us/powershell/

== Alias for grep ==
{{{
new-alias grep findstr
tasklist | grep note
}}}

== PowerShell commands ==
{{{
Get-ChildItem c:\windows\system32\*.txt -Recurse | Select-String -Pattern "Microsoft" -CaseSensitive
sls "searchstring" file 
}}}