gpt4 book ai didi

json - Powershell ConvertTo-Json键小写

转载 作者:行者123 更新时间:2023-12-03 00:25:21 28 4
gpt4 key购买 nike

运行这段代码

get-service | Select-Object -Property displayname, status, name | convertTo-Json

结果例如在这样的输出中:
{
"DisplayName": "Adobe Acrobat Update Service",
"Status": 4,
"Name": "AdobeARMservice"
},
{
"DisplayName": "Adobe Flash Player Update Service",
"Status": 1,
"Name": "AdobeFlashPlayerUpdateSvc"
},

是否可以小写返回键?

最佳答案

您可以使用计算出的属性:

get-service | Select-Object -Property @{n='displayname';e={$_.displayname.tolower()}}, status, name | convertTo-Json

这是改变输出格式化的方式

ps。您可以对所有属性进行重复
pps。 https://blogs.technet.microsoft.com/josebda/2014/04/19/powershell-tips-for-building-objects-with-custom-properties-and-special-formatting/

关于json - Powershell ConvertTo-Json键小写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50087493/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com