powershell - 想要在 Powershell 函数中包装 PSList 以使用管道值

标签 powershell pipelined-function

我喜欢 PSList,并使用 CPU 和 Elapsed 时间来识别需要杀死的进程。我想将它包装在一个返回管道值的 powershell 函数中,以便我可以执行以下操作:

get-remoteprocess server1 | where  {$_.CPUMinutes -gt 4}

我被困在从函数返回值中——我知道这需要是一个对象数组。

这是我的第一个版本的样子:
function get-remoteproc {
param ($hostname)
$results = pslist "\\$hostname" 

for ($i= 3; $i -le $results.length; $i++) {
    $strline = $results[$i]
    $StrWithPrefix = " "+$results[$i]
    $trimmedline = $StrWithPrefix -replace '\s+', " ";
    $Splitline = $trimmedline.Split(" ")
    $ProcessName = $Splitline[1]
    .
    .
    $ProcessCPUTime = ":"+[string]$Splitline[7]
    $SplitCpuTime = $ProcessCPUTime.Split(":")

    $CpuHours = $SplitCpuTime[1]
    $CpuMinutes = $SplitCpuTime[2]
    $CpuSeconds = $SplitCpuTime[3]
    .
    .
    .

    $obj = New-Object PSObject
       $obj | Add-Member Noteproperty -Name "Name" -Value $Name
       $obj | Add-Member Noteproperty -Name "PPid" -Value $Ppid
       $obj | Add-Member Noteproperty -Name "Pri" -Value $Pri

}

接受 Doug Finke 的建议,这是令人愉悦的简洁,这是我稍微改编的版本,它适用于管道值。
function get-remoteproc {
    param ($hostname=$env:COMPUTERNAME)

    $results = PsList "\\$hostname"

    foreach($record in $results[3..($results.Count)]) {
        # Remove spaces
        while ($record.IndexOf("  ") -ge 0) {
            $record = $record -replace "  "," "
        }

        $Name,$Processid,$Pri,$Thd,$Hnd,$Priv,$CPUTime,$ElapsedTime = $record.Split(" ")

        $properties = @{
            Name = $Name
            Pid = $Processid
            Pri = $Pri
            Thd = $Thd
            Hnd = $Hnd
            Priv = $Priv
            CPUTime = $CPUTime
            ElapsedTime = $ElapsedTime
        }

        New-Object PSObject -Property $properties |
            Add-Member -PassThru ScriptProperty CPUH   {[int]$this.CPUTime.Split(":")[0]} |
            Add-Member -PassThru ScriptProperty CPUM {[int]$this.CPUTime.Split(":")[1]} |
            Add-Member -PassThru ScriptProperty CPUS {[int]$this.CPUTime.Split(":")[2]} |
            Add-Member -PassThru ScriptProperty ElaH {[int]$this.ElapsedTime.Split(":")[0]} |
            Add-Member -PassThru ScriptProperty ElaM {[int]$this.ElapsedTime.Split(":")[1]} |
            Add-Member -PassThru ScriptProperty ElaS {[int]$this.ElapsedTime.Split(":")[2]} 
    }
}

以及对该函数的调用,这表明对象已正确展开以供管道使用:
get-remoteproc "Server1" | where {(($_.CPUM * $_.CPUS) -gt 60) -and ($_.name -notmatch "Idle" )}|
ft name, pid, pri, thd, hnd, priv, CPUH, cpuM, cpuS, ElaH, ElaM, ElaS   -auto

谢谢大家!

最佳答案

正如 empo 指出的那样,您需要将 $obj 发送回管道。这是将 plist 文本转换为 PowerShell 对象的另一种方法。

function get-remoteproc {
    param ($hostname=$env:COMPUTERNAME)

    $results = PsList "\\$hostname"

    foreach($record in $results[3..($results.Count)]) {
        # Remove spaces
        while ($record.IndexOf("  ") -ge 0) {
            $record = $record -replace "  "," "
        }

        $Name,$Processid,$Pri,$Thd,$Hnd,$Priv,$CPUTime,$ElapsedTime = $record.Split(" ")

        $properties = @{
            Name = $Name
            Pid = $Processid
            Pri = $Pri
            Thd = $Thd
            Hnd = $Hnd
            Priv = $Priv
            CPUTime = $CPUTime
            ElapsedTime = $ElapsedTime
        }

        New-Object PSObject -Property $properties |
            Add-Member -PassThru ScriptProperty CPUHours   {$this.CPUTime.Split(":")[0]} |
            Add-Member -PassThru ScriptProperty CPUMinutes {$this.CPUTime.Split(":")[1]} |
            Add-Member -PassThru ScriptProperty CPUSeconds {$this.CPUTime.Split(":")[2]} 

    }
}

关于powershell - 想要在 Powershell 函数中包装 PSList 以使用管道值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5927129/

相关文章:

visual-studio-2010 - VS2010 构建后事件,替换文件中的字符串。电源外壳?

使用 schtasks.exe 的 Powershell 计划任务返回错误 无法识别成功

f# - 通过流水线查找索引处的元素

oracle - SELECT * FROM TABLE(流水线函数): can I be sure of the order of the rows in the result?

plsql - PLS-00653 空行错误(PL/SQL 范围内不允许聚合/表函数)

powershell - 如何在运行之前更新当前脚本?

azure - 使用 Powershell 获取应用服务计划的值(value)

deployment - 使用 Powershell 部署到 SQL Azure - 有没有办法生成数据丢失警告报告?

haskell - 将递归函数重写为管道函数组合

oracle - PL/SQL - 在管道函数中立即执行