-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathConvert-HashtableToObject.ps1
56 lines (53 loc) · 1.28 KB
/
Convert-HashtableToObject.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
Function Convert-HashtableToObject
{
[CmdletBinding()]
PARAM
(
[Parameter(ValueFromPipeline, Mandatory)]
[HashTable]$hashtable
,
[switch]$Combine
,
[switch]$Recurse
)
BEGIN
{
$output = @()
}
PROCESS
{
if ($recurse)
{
$keys = $hashtable.Keys | ForEach-Object { $_ }
Write-Verbose -Message "Recursing $($Keys.Count) keys"
foreach ($key in $keys)
{
if ($hashtable.$key -is [HashTable])
{
$hashtable.$key = Convert-HashtableToObject -hashtable $hashtable.$key -Recurse # -Combine:$combine
}
}
}
if ($combine)
{
$output += @(New-Object -TypeName PSObject -Property $hashtable)
Write-Verbose -Message "Combining Output = $($Output.Count) so far"
}
else
{
New-Object -TypeName PSObject -Property $hashtable
}
}
END
{
if ($combine -and $output.Count -gt 1)
{
Write-Verbose -Message "Combining $($Output.Count) cached outputs"
$output | Join-Object
}
else
{
$output
}
}
}