Variables in PowerShell

In our miniseries Variables in Shells, learn how to handle local variables in PowerShell.
150 readers like this.
Shells in a competition

Opensource.com

In computer science (and casual computing), a variable is a location in memory that holds arbitrary information for later use. In other words, it’s a temporary storage container for you to put data into and get data out of. In the Bash shell, that data can be a word (a string, in computer lingo) or a number (an integer).

You may have never (knowingly) used a variable before on your computer, but you probably have used a variable in another area of your life. When you say things like "give me that" or "look at this," you’re using grammatical variables (you think of them as pronouns). The meaning of "this" and "that" depends on whatever you’re picturing in your mind, or whatever you’re pointing to as an indicator for your audience to know what you’re referring to. When you do math, you use variables to stand in for unknown values, even though you probably don’t call them variables.

This article addresses variables in PowerShell, which runs on Windows, Linux, or Mac. Users of the open source Bash shell should refer to my article about variables in the Bash shell instead (although you can run PowerShell on Linux, and it is open source, so you can still follow along with this article).

Note: The examples in this article are from a PowerShell session running on the open source operating system Linux, so if you’re on Windows or Mac the file paths will differ. However, Windows converts / to \ automatically, and all examples work across all platforms, provided that you substitute obvious differences (for instance, it is statistically unlikely that your username is seth).

What are variables for?

Whether you need variables in PowerShell depends on what you do in a terminal. For some users, variables are an essential means of managing data, while for others they’re minor and temporary conveniences, or for some, they may as well not exist.

Ultimately, variables are a tool. You can use them when you find a use for them, or leave them alone in the comfort of knowing they’re managed by your OS. Knowledge is power, though, and understanding how variables work in Bash can lead you to all kinds of unexpected creative problem-solving.

Set a variable

You don’t need special permissions to create a variable. They’re free to create, free to use, and generally harmless. In PowerShell, you create a variable by defining a variable name and then setting its value with the Set-Variable command. The example below creates a new variable called FOO and sets its value to the string $HOME/Documents:

PS> Set-Variable -Name FOO -Value "$HOME/Documents"

Success is eerily silent, so you may not feel confident that your variable got set. You can see the results for yourself with the Get-Variable (gv for short) command. To ensure that the variable is read exactly as you defined it, you can also wrap it in quotes. Doing so preserves any special characters that might appear in the variable; in this example, that doesn’t apply, but it’s still a good habit to form:

PS> Get-Variable "FOO" -valueOnly
/home/seth/Documents

Notice that the contents of FOO aren’t exactly what you set. The literal string you set for the variable was $HOME/Documents, but now it’s showing up as /home/seth/Documents. This happened because you can nest variables. The $HOME variable points to the current user’s home directory, whether it’s in C:\Users on Windows, /home on Linux, or /Users on Mac. Since $HOME was embedded in FOO, that variable gets expanded when recalled. Using default variables in this way helps you write portable scripts that operate across platforms.

Variables usually are meant to convey information from one system to another. In this simple example, your variable is not very useful, but it can still communicate information. For instance, because the content of the FOO variable is a file path, you can use FOO as a shortcut to the directory its value references.

To reference the variable FOO’s contents and not the variable itself, prepend the variable with a dollar sign ($):

PS> pwd
/home/seth
PS> cd "$FOO"
PS> pwd
/home/seth/Documents

Clear a variable

You can remove a variable with the Remove-Variable command:

PS> Remove-Variable -Name "FOO"
PS> gv "FOO"
gv : Cannot find a variable with the name 'FOO'.
[...]

In practice, removing a variable is not usually necessary. Variables are relatively "cheap," so you can create them and forget them when you don’t need them anymore. However, there may be times you want to ensure a variable is empty to avoid conveying unwanted information to another process that might read that variable.

Create a new variable with collision protection

Sometimes, you may have reason to believe a variable was already set by you or some other process. If you would rather not override it, you can either use New-Variable, which is designed to fail if a variable with the same name already exists, or you can use a conditional statement to check for a variable first:

PS> New-Variable -Name FOO -Value "example"
New-Variable : A variable with name 'FOO' already exists.

Note: In these examples, assume that FOO is set to /home/seth/Documents.

Alternately, you can construct a simple if statement to check for an existing variable:

PS> if ( $FOO ) 
>> { gv FOO } else 
>> { Set-Variable -Name "FOO" -Value "quux" } 

Add to a variable

Instead of overwriting a variable, you can add to an existing one. In PowerShell, variables have diverse types, including string, integer, and array. When choosing to create a variable with, essentially, more than one value, you must decide whether you need a character-delimited string or an array. You may not care one way or the other, but the application receiving the variable’s data may expect one or the other, so make your choice based on your target.

To append data to a string variable, use the += syntax:

PS> gv FOO
foo
PS> $FOO += ",bar" 
PS> gv FOO
foo,bar
PS> $FOO.getType().Name
String

Arrays are special types of variables in PowerShell and require an ArrayList object. That’s out of scope for this article, as it requires delving deeper into PowerShell’s .NET internals.

Go global with environment variables

So far the variables created in this article have been local, meaning that they apply only to the PowerShell session you create them in. To create variables that are accessible to other processes, you can create environment variables, which will be covered in a future article.

Seth Kenlon
Seth Kenlon is a UNIX geek, free culture advocate, independent multimedia artist, and D&D nerd. He has worked in the film and computing industry, often at the same time.

6 Comments

Or just set it this way.
$whatevername = "Random string"

Great tip, thanks! I feel that this shorthand breaks consistency with other variable commands in PowerShell, and I didn't want that to muddle the introduction to the concept, but this is exactly what comments are for: pro tips!

In reply to by Xiakit (not verified)

+1 on using:

```
$foo = "foo"
```

It's the idiomatic way of storing things in variables. The variable cmdlets are good for when you need something a bit more dynamic though! ?

Also, I think you have a typo... To append to a string variable, it's `+=` not `=+`. This is consistent with a lot of C-like languages.

Thanks for the += catch. The article has been corrected.

In reply to by Tyler Leonhardt (not verified)

I don't use Powershell but see ing that it runs on Linux is interenting, and I will try it out. At least for an afternoon!

Really good post. Thanks for the information.

Creative Commons LicenseThis work is licensed under a Creative Commons Attribution-Share Alike 4.0 International License.