I've seen the $ symbol used in PowerShell with every variable. Is there any specific use of this symbol?
The dollar symbol in PowerShell variable is used to set/evaluate the value of that variable.
$Variable1 = hello
Above expression is to define a vriable by setting it a value hello. Here the variable name is Variable1, but with $ it is setting the Variable1 a value hello.
There are cmdlets to set variables where $ is not used.
Set-Variable -Name Variable2 -Value HelloWorld
And get cmdlet for the same.
Get-Variable -Name Variable2
PS: Above explanation is only for variables.
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