Hello everybody,
today I want to write few words about formatting strings in PowerShell.
Consider the following example:
"Today is $(Get-Date). Enjoy your life"
Output will be the following:
Today is 08/23/2016 16:04:18. Enjoy your life
So, if you want to call some PowerShell function, yo...