Index

Introduction to PowerShell Hashtables

What is a hashtable?

A hashtable in PowerShell is a data structure that stores key-value pairs, similar to, how other languages describe it, a dictionary or associative array. Each value is associated with a unique key, allowing for efficient data retrieval. Here’s a basic example:

# Creating an empty hashtable
$ageList = @{}

# Adding key-value pairs
$ageList['Kevin'] = 36
$ageList['Alex'] = 9

$ageList['Kevin']
36

$ageList.Alex
9

Creating and initializing hashtables

To create a hashtable and initialize later, you use the @{} syntax.

# Creating an empty hashtable
$myHashtable = @{}

# Adding key-value pairs
$myHashtable['Name'] = 'John'
$myHashtable['Age'] = 30
$myHashtable.City = 'Amsterdam'

You can also initialize a hashtable with values directly:

# Initializing a hashtable with key-value pairs
$person = @{
    Name = 'John'
    Age = 30
    City = 'Amsterdam'
}

Accessing and modifying hashtable entries

You can access values in a hashtable using their keys:

# Accessing values
$name = $person['Name']
$age = $person['Age']
$city = $person['City']

# Output the values
$name  # Outputs: John
$person.Age   # Outputs: 30
$person['City']  # Outputs: Amsterdam

You can modify existing values by assigning new values to the keys:

# Modifying values
$person['Age'] = 31
$person.City = 'London'

Common hashtable operations (add, remove & ordered)

To add a key-value pair, you can use multiple methods

# adding a key-value pair
$person.Add("LastName","Cena")

# Or
$person['Occupation'] = "Actor"

# Or
$person.Sex = 'Male'

To remove a key-value pair, use the Remove method:

# Removing a key-value pair
$person.Remove('City')

If you need to maintain the order of keys, you can use an ordered hashtable:

# Creating an ordered hashtable
$orderedHashtable = [ordered]@{
    Name = 'John'
    Age = 30
    City = 'Amsterdam'
}

Ordered hashtables ensure that the keys appear in the order you define them.

Advanced Hashtable Techniques

Splatting

In my opinion, a very useful technique involving hashtables, if not the one I use the most. Splatting is a technique to pass parameters to a command using a hashtable or array. This makes the code cleaner and easier to read. We already have a complete blog post about it. Read it at: PowerShell splatting simplifying command syntax

Nested hashtables

Nested hashtables are powerful for organizing and managing complex data structures in your PowerShell scripts. Nested hashtables are hashtables that contain other hashtables as their values. This allows you to create data structures that can store hierarchical information. Here’s how you can create and use nested hashtables:

Creating a Nested Hashtable

You can create a nested hashtable by assigning another hashtable as a value to a key in the parent hashtable. Here’s an example:

# Creating a nested hashtable
$computerSpecs = @{
    Brand = 'Dell'
    Model = 'Optiplex'
    Specs = @{
        RAM = '16 GB'
        CPU = 'Intel i7'
        Storage = @{
            Type = 'SSD'
            Capacity = '512 GB'
        }
    }
}

# Accessing nested hashtable values
$ram = $computerSpecs['Specs']['RAM']
$cpu = $computerSpecs.Specs.CPU

$storageType = $computerSpecs['Specs']['Storage']['Type']
$storageCapacity = $computerSpecs.Specs.Storage.Capacity

# Output the values
$ram              # Outputs: 16 GB
$cpu              # Outputs: Intel i7
$storageType      # Outputs: SSD
$storageCapacity  # Outputs: 512 GB

Modifying Nested Hashtable Values

You can modify values in a nested hashtable just like you would in a regular hashtable:

# Modifying nested hashtable values
$computerSpecs['Specs']['RAM'] = '32 GB'
$computerSpecs.Specs.Storage.Capacity = '1 TB'

# Output the modified values
$computerSpecs['Specs']['RAM']              # Outputs: 32 GB
$computerSpecs.Specs.Storage.Capacity  # Outputs: 1 TB

Adding New Nested Hashtables

You can also add new nested hashtables to an existing hashtable:

# Adding a new nested hashtable
$computerSpecs['Specs']['Graphics'] = @{
    Type = 'NVIDIA'
    Memory = '4 GB'
}

# Or
$computerSpecs.Specs.PCI = @{
    Type = 'Express'
    Version = '4.0'
}

Removing a Nested Hashtable

If you have a nested hashtable and you want to remove one of its nested elements, you can use the Remove method. Here’s an example:

# Removing a nested hashtable
$computerSpecs['Specs'].Remove('Storage')

# Output the modified hashtable
$computerSpecs

Using hashtables for configuration management

Using hashtables for configuration management in PowerShell is a powerful way to store and manage configuration settings in a structured and easily accessible manner. Let’s create an example. Note: You should never put a plain text password in your code! This example is purely for demonstrating.

# Creating a configuration hashtable
$config = @{
    Database = @{
        Server = 'localhost'
        Name = 'MyDatabase'
        User = 'admin'
        Password = 'password123'
    }
    Application = @{
        Name = 'MyApp'
        Version = '1.0.0'
        Environment = 'Development'
    }
    Logging = @{
        Level = 'Verbose'
        FilePath = 'C:\Logs\app.log'
    }
}

You can save the configuration hashtable to a file and load it back when needed. This is useful for persisting configuration settings across sessions. Personally I always prefer Json, but you can do the same with XML or any other method. But it must be a method that allows you to read in an object again.

Saving Configuration to a File

# Saving configuration to a file
$config | ConvertTo-Json | Out-File -FilePath 'C:\config.json'

Loading Configuration from a File

# Loading configuration from a file
$config = Get-Content -Path 'C:\config.json' | ConvertFrom-Json -AsHashtable

Using Configuration in a Script

# Load configuration
$config = Get-Content -Path 'C:\config.json' | ConvertFrom-Json -AsHashtable

# Use configuration settings
$DatabaseConnectionParameters = @{
    ServerInstance = $($config['Database']['Server'])
    Database = $($config['Database']['Name'])
    Username = $($config['Database']['User'])
    Password = $($config['Database']['Password'])
}

Connect-Database @DatabaseConnectionParameters 

# Set logging level
$logLevel = $config['Logging']['Level']
Write-Output "Log level set to: $logLevel"

Using hashtables for configuration management helps keep your scripts clean and makes it easy to manage and update settings without modifying the script logic itself. Furthermore, you can also use the same configuration in multiple scripts. Whereby if you need to adjust something, you do not have to check all the scripts one by one.

Practical examples and use cases

Splatting

Splatting is a technique to pass parameters to a command using a hashtable or array.

# Define parameters using a hashtable
$params = @{
    Name = 'MyService'
    DisplayName = 'My Custom Service'
    StartupType = 'Automatic'
    Description = 'This is a custom service.'
}

# Use splatting to pass parameters to New-Service cmdlet
New-Service @params

In this example, the @params hashtable contains the parameters for the New-Service cmdlet. Splatting simplifies the command and makes it more readable.

Storing Configuration Settings

Hashtables are great for storing configuration settings for scripts or applications.

$config = @{
    Database = @{
        Server = 'localhost'
        Name = 'MyDatabase'
        User = 'admin'
        Password = 'password123'
    }
    Application = @{
        Name = 'MyApp'
        Version = '1.0.0'
        Environment = 'Development'
    }
}

Mapping Values

You can use hashtables to map values, such as converting abbreviations to full names.

$states = @{
    'CA' = 'California'
    'NY' = 'New York'
    'TX' = 'Texas'
}

$stateFullName = $states['CA']  # Outputs: California

Grouping Related Data

Hashtables can group related data, making it easier to manage and access.

$employee = @{
    Name = 'John Doe'
    Position = 'Developer'
    Contact = @{
        Email = 'john.doe@example.com'
        Phone = '123-456-7890'
    }
}

$email = $employee['Contact']['Email']  # Outputs: john.doe@example.com

Leave a Reply

Your email address will not be published. Required fields are marked *