powershell psobject / hash对象/字典的示例
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell psobject / hash对象/字典的示例相关的知识,希望对你有一定的参考价值。
function NewUsageScorecard{
param(
[string]$Name,
[int]$CountInMainRepo,
[int]$CountInToolsRepo,
[int]$CountInAdminTool,
[string]$AlternateName,
[int]$AlternateCountInMainRepo,
[int]$AlternateCountInToolsRepo,
[int]$AlternateCountInAdminTool
)
new-object psobject -property @{
Name = $Name;
Count = $CountInMainRepo;
CountInToolsRepo = $CountInToolsRepo;
CountInAdminTool = $CountInAdminTool;
AlternateName = $AlternateName;
AlternateCount = $AlternateCountInMainRepo;
AlternateCountInToolsRepo = $AlternateCountInToolsRepo;
AlternateCountInAdminTool = $AlternateCountInAdminTool;
}
}
$eregex = new-object psobject -property @{ CSComments = '^(\+\s*//|\+\+\+)' }
以上是关于powershell psobject / hash对象/字典的示例的主要内容,如果未能解决你的问题,请参考以下文章
powershell 将复制的范围从excel转换为PSObjects数组
c#中的PowerShell cmd调用Invoke不返回特定用户电子邮件列表的PsObject
如何在C#中获取PSObject.Properties的ScriptProperty值?
如何在 C# 中获取 PSObject.Properties 的 ScriptProperty 值?
如何正确验证powershell中的参数?
Powershell 之POP3邮件管理