How to cretae powershell variabels from hash table?
I get from the function evaluator a hast table thet looks like this:
Name Value
---- -----
samid 123456
pw Pa$$1234
I need to convert it into PowerShell variabels with values:
$samid = 123456
$pw = Pa$$1234
How to?
GH