Posted On: Feb 22, 2018
The String Interpolation is the way of displaying the value of the variable by surrounding the variable in the double-quotes.
//example
$var = “cool” Echo “the value is $var”
The above statement produces the ‘value is cool’. Here the $var is surrounded by double quotes when used in the echo statement. So, it prints the value of the variable instead of the variable name itself. It is called string interpolation.
Never Miss an Articles from us.
PowerShell is a command-line tool built upon the .NET framework to help the windows system administrator. With PowerShell, you can control your system operations such as accessing data storage, regist...
To run a script in the PowerShell, go to the directory where your script is stored on your PowerShell command. Then, run the script by typing the following command. PS C:\script_folder> ./Script.p...
Open your PowerShell command and type the following command to find the version, PS C:\> $PSVersionTable.PSVersion The major column value of the result is the version of your PowerShell....