powershell 的ConvertTo的散列表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 的ConvertTo的散列表相关的知识,希望对你有一定的参考价值。

function ConvertTo-Hashtable
{
    [CmdletBinding()]
    param (
        [Parameter(Mandatory = $true, ValueFromPipeline = $true)]
        [psobject[]] $InputObject
    )

    process
    {
        foreach ($object in $InputObject)
        {
            $hash = @{}
            
            foreach ($property in $object.PSObject.Properties)
            {
                $hash[$property.Name] = $property.Value
            }

            $hash
        }
    }
}

以上是关于powershell 的ConvertTo的散列表的主要内容,如果未能解决你的问题,请参考以下文章

ConvertTo-PnPClientSidePage 在 PnP PowerShell 中不可用

powershell 的ConvertTo-Boolean.ps1

PowerShell ConvertTo-Html 将查询结果转换并保存成Html

powershell ConvertTo-Hashtable:Powershell实用程序函数,它将psCustomObject转换为HashTable,以便更好地寻找和迭代

保存凭据以供 powershell 重用和错误 ConvertTo-SecureString : Key not valid for use in specified state

convertto-securestring结果 使用python解密