↧
Powershell: Search for String or grep for Powershell
This shows you how you can search in files for a specific content with Windows Powershell. This “replaces” the Windows command-line utility “findstr”. In the Unix/Linux world you mostly use the...
View ArticlePowershell: Convert String to Scriptblock
If you use PowerShell remoting in some scripts you will se you cannot use a string to send it with the Invoke-Command cmdlet. So you can simple convert a String to a Scriptblock $scriptBlock =...
View Article