<# .SYNOPSIS Demonstrates adding items to a hashtable .DESCRIPTION This script creates a Hashtable, then adds some items to it, and finally prints out the resulting hash table. .NOTES File Name : Add-Hashtable.ps1 Author : Thomas Lee - tfl@psp.co.uk Requires : PowerShell V2 .LINK http://www.pshscripts.blogspot.com .EXAMPLE PS c:\foo> .\Add-Hashtable.ps1 The Hashtable contains the following: Name Value ---- ----- four fox two quick three brown one The #> ## # Start of script ## # Create a hash table $MyHashTable = @{} # Add to it using .NET $MyHashTable.Add( 'one', 'The' ) $MyHashTable.Add( 'two', 'quick') # Add the PowerShell Way: $MyHashTable += @{'three' = 'brown'} $MyHashTable += @{'four' = 'fox' } # Display the Hashtable. ' The Hashtable contains the following:' $MyHashTable
This blog contains PowerShell scripts, more PowerShell scripts and still more PowerShell scripts. Occasionally you may see some organisational posts.
Saturday 12 July 2008
Add-Hashtable.ps1
Labels:
add,
powershell,
scripts,
system.collections.hashtable
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment