PowerShell Hashtables
last modified February 15, 2025
In this article, we show the basics of PowerShell hashtables, a powerful data structure for storing and managing data in PowerShell.
Hashtables are a collection of key-value pairs.
Creating a hashtable
In the first example, we demonstrate how to create a hashtable in PowerShell.
$person = @{ Name = "John Doe" Age = 35 } Write-Output "Name: $($person.Name)" Write-Output "Age: $($person.Age)"
In this program, we create a hashtable $person
containing two key-value pairs.
$person = @{ Name = "John Doe" Age = 35 }
We create a hashtable $person
containing two key-value pairs.
The keys are Name
and Age
.
Write-Output "Name: $($person.Name)" Write-Output "Age: $($person.Age)"
We use the dot notation to access the values of the hashtable.
PS C:\> .\hashtable1.ps1 Name: John Doe Age: 35
We run the script and see the output.
Adding elements
In the next example, we demonstrate how to add elements to a hashtable.
$person = @{ Name = "John Doe" Age = 35 } $person.City = "New York" Write-Output "Name: $($person.Name)" Write-Output "Age: $($person.Age)" Write-Output "City: $($person.City)"
In this program, we add a new element City
to the hashtable.
$person = @{ Name = "John Doe" Age = 35 } $person.City = "New York"
We create a hashtable $person
containing two key-value pairs.
We add a new key-value pair City
to the hashtable.
Write-Output "Name: $($person.Name)" Write-Output "Age: $($person.Age)" Write-Output "City: $($person.City)"
We use the dot notation to access the values of the hashtable.
PS C:\> .\hashtable2.ps1 Name: John Doe Age: 35 City: New York
We run the script and see the output.
Iterating over hashtables
In the following example, we demonstrate how to iterate over a hashtable.
$person = @{ Name = "John Doe" Age = 35 City = "New York" } foreach ($key in $person.Keys) { Write-Output "Key: $key, Value: $($person[$key])" }
In this program, we use a foreach
loop to iterate over the hashtable.
$person = @{ Name = "John Doe" Age = 35 City = "New York" }
We create a hashtable $person
containing three key-value pairs.
foreach ($key in $person.Keys) { Write-Output "Key: $key, Value: $($person[$key])" }
We use a foreach
loop to iterate over the hashtable.
We use the Keys
property to get a list of keys in the hashtable.
We use the indexing operator []
to access each element in the hashtable.
PS C:\> .\hashtable3.ps1 Key: Name, Value: John Doe Key: Age, Value: 35 Key: City, Value: New York
We run the script and see the output.
Removing elements
In the last example, we demonstrate how to remove elements from a hashtable.
$person = @{ Name = "John Doe" Age = 35 City = "New York" } $person.Remove("Age") foreach ($key in $person.Keys) { Write-Output "Key: $key, Value: $($person[$key])" }
In this program, we remove the Age
element from the hashtable.
$person = @{ Name = "John Doe" Age = 35 City = "New York" } $person.Remove("Age")
We create a hashtable $person
containing three key-value pairs.
We remove the Age
element from the hashtable.
foreach ($key in $person.Keys) { Write-Output "Key: $key, Value: $($person[$key])" }
We use a foreach
loop to iterate over the hashtable.
We use the Keys
property to get a list of keys in the hashtable.
We use the indexing operator []
to access each element in the hashtable.
PS C:\> .\hashtable4.ps1 Key: Name, Value: John Doe Key: City, Value: New York
We run the script and see the output.
Source
In this article, we have worked with PowerShell hashtables.
Author
List all PowerShell tutorials.