Place PowerShell Variables in Strings: Quick Tips

Published:1 July 2019 - < 1 min. read

When you need to show a PowerShell variable in a string, you typically just add the variable along with some other text inside of a string with double-quotes as shown below

PowerShell variable in string
PowerShell variable in string

Related: Back to Basics: PowerShell Strings

Putting a variable inside of a double-quoted string is called variable expansion. This method of variable insertion is fine if the variable in question has a value.

But what if the string is part of a larger script and you have various conditions that might set $serverName. This means that the variable might not contain any value at all. At that point, your message just looks messed up.

You can see below if you just insert the PowerShell variable inside of the string and then return the value, nothing is shown. You have no way to know if that value even contained a variable reference at all!

No variable expansion in verbose message
No variable expansion in verbose message

The solution? Make it a habit of enclosing your variables inside of strings with simple brackets.

Easy inspection of no variable value
Easy inspection of no variable value

You can now clearly see that a variable should have been there but was not.

It’s a simple trick but it’s saved me so much troubleshooting time over the years. Now, it’s habit to enclose variables in brackets. In fact, I have a snippet that I use to simply type varb and it will automatically do it for me.

Hate ads? Want to support the writer? Get many of our tutorials packaged as an ATA Guidebook.

Explore ATA Guidebooks

Looks like you're offline!