What does the special character !
mean in PowerShell?
Or a site which lists all special characters and meaning. Example:
$string = blah
!$String
(Returns $false)
PowerShell uses the !
character as an alias for the logical -not
operator:
$true
!$true
$false
!$false
True
False
False
True
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With