external help file | Module Name | online version | schema |
---|---|---|---|
PowerGRR-help.xml |
PowerGRR |
2.0.0 |
Get a list of all available flows.
Get-GRRFlowDescriptor [[-Credential] <PSCredential>] [-ShowJSON] [<CommonParameters>]
List all flows and allow filtering based on category, name and doc content.
PS C:\> Get-GRRFlowDescriptor -Credential $cred
List all available flows.
PS C:\> $ret = Get-GRRFlowDescriptor -Credential $cred
PS C:\> $ret | select name
List all available flows and display all the flow names.
PS C:\> $ret = Get-GRRFlowDescriptor -Credential $cred
PS C:\> $ret | where { $_.category -match "memory"}
List all available flows from the memory category.
PS C:\> $ret = Get-GRRFlowDescriptor -Credential $cred
PS C:\> $ret | where { $_.category -match "file"} | select name
List all available flows from the file category and display only the flow names.
PS C:\> Get-GRRFlowDescriptor -Credential $cred | ? { $_.name -match "proc" }
List all available flows where "proc" is in the flow name.
GRR credentials.
Type: PSCredential
Parameter Sets: (All)
Aliases:
Required: False
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Show plain JSON output.
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Benannt
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).