PowerTip: Retrieving Specific Items from Hash Table
Summary: Retrieve specific items from a Windows PowerShell hash table. How can I use Windows PowerShell t retrieve specific values associated with specific keys in a hash table? Suppose you have a hash table such as this: $d = @{a=28;b=29;c=30} The keys and values associated with the hash table are: PS C:> $d Name &...