PowerTip: Find Value from PowerShell Hash Table
Summary: Look up values from a Windows PowerShell hash table. How can I look up a specific value that is associated with a specific key in a Windows PowerShell hash table? Use the Item method and supply the key, for example: $hash = @{ 2 = "Removable disk" 3="Fixed local disk" &nbs...