Powershell function的结构

Function Do-Something {
    [CmdletBinding()]
    param(
        [Parameter(Mandatory=$True,
        ValueFromPipeline=$True)]
        [string[]]$computername
    )
    BEGIN {}
    PROCESS {}
    END {}
}

你可能感兴趣的:(Powershell function的结构)