Summary: Find Windows PowerShell cmdlets that accept a hash table for input.
How can I find what Windows PowerShell cmdlets accept a hash table for input?
Use the Get-Command cmdlet, use the ParameterName parameter, and search for HashTable information:
Get-Command -ParameterName *hashtable*