September 28th, 2014

PowerTip: Display Keys from Hash Table

Doctor Scripto
Scripter

Summary: Learn how to display keys from a hash table.

Hey, Scripting Guy! Question How can I display only the keys in a Windows PowerShell hash table?

Hey, Scripting Guy! Answer Store the hash table in a variable, and then use the Keys property, for example:

$a = @{a=1;b=2;c=3;d=4}

$a.Keys

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.

Feedback