Summary: Quickly search a hash table in Windows PowerShell.
How can I easily search for information in a hash table full of data in Windows PowerShell?
Plug in the name of a value, for example:
[array]$Hashtable=$NULL
$Hashtable+=@{Purple=54}
$Hashtable+=@{People=37}
$Hashtable+=@{Eater=78}
To find the value called People, add the name to the hash table variable:
$Hashtable.People
37