将Powershell转换为嵌套的Json

时间:2016-09-01 13:59:00

标签: json powershell

所以我一直试图解决这个问题几天,似乎找不到任何有用的东西,所以我希望你能帮助或指出我正确的方向。

我正在创建一个powershell脚本,该脚本在Active Directory中创建服务帐户,在脚本的最后是用户名和密码,然后存储在Enterprise Password Vault中。 REST Api用于在此Vault中存储凭据。我有一个小问题将我的PowerShell转换为嵌套的Json,没有嵌套它工作正常...

我需要获得的JSON输出是:

{
"account":{
    "safe":"Test_safe",
    "platformID":"WindowsDomainAccount",
    "address":"ad.local",
    "password":"password",
    "username":"test",
    "disableAutoMgmt":"true",
    "disableAutoMgmtReason":"test",
    "properties":
    [
    {"Key":"Title", "Value":"Test Account"},
    {"Key":"Description", "Value":"REQ0000001"},
    ]
  }
}

这是我的Powershell,不包括"属性"哪个工作正常。

   $hash = [ordered]@{
        account = [ordered]@{
            safe="ServiceAccounts"; 
            platformID="WindowsDomainAccount";
            address="ad.local";
            password="Password1";
            username="svc-test";
            disableAutoMgmt="true";
            disableAutoMgmtReason="testing";
        }
   }

$json = $hash | ConvertTo-Json

$invoke = Invoke-Webrequest -Uri $url -Method "POST" -Body $json -ContentType "application/json" -Header @{"Authorization" = $header} -ErrorAction Stop -ErrorVariable WebError

当我尝试添加到我的powershell时,问题就开始了

"properties":
    [
    {"Key":"Title", "Value":"Test Account"},
    {"Key":"Description", "Value":"REQ0000001"},
    ]

我认为我的第一个问题是Key这个词也是一个powershell关键字。

我尝试过很多不同的组合,并尝试过我发现的其他文章中的大量内容,但我发现的大部分内容都是通过Powershell解析嵌套的Jason。

希望一切都有道理。

1 个答案:

答案 0 :(得分:2)

下面的代码对我有用(PS v4),似乎以你想要的格式返回json。

$hash = [ordered]@{
    account = [ordered]@{
        safe="ServiceAccounts"; 
        platformID="WindowsDomainAccount";
        address="ad.local";
        password="Password1";
        username="svc-test";
        disableAutoMgmt="true";
        disableAutoMgmtReason="testing";

        properties = @(
            @{"Key"="Title"; "Value"="Test Account"},
            @{"Key"="Description"; "Value"="REQ0000001"}
        )

    }
}

$json = $hash | ConvertTo-Json -Depth 99
$json

以上的输出......

{
    "account":  {
                    "safe":  "ServiceAccounts",
                    "platformID":  "WindowsDomainAccount",
                    "address":  "ad.local",
                    "password":  "Password1",
                    "username":  "svc-test",
                    "disableAutoMgmt":  "true",
                    "disableAutoMgmtReason":  "testing",
                    "properties":  [
                                       {
                                           "Key":  "Title",
                                           "Value":  "Test Account"
                                       },
                                       {
                                           "Key":  "Description",
                                           "Value":  "REQ0000001"
                                       }
                                   ]
                }
}