Powershell appears to be non casesensitive but when using replace:
$test="abcd"
$test.replace("A","Z")
is case sensitive, why is that?
Thanks,
This can certainly trip one up. You have to be aware of whether you are
using Powershell operators like -eq, -contains, etc or .Net methods like
.Equals, .Replace, .Contains .