| external help file | DSInternals.RpcFilters.Auditing-help.xml |
|---|---|
| Module Name | DSInternals.RpcFilters |
| online version | https://github.com/MichaelGrafnetter/RPCFilterManager/blob/main/Documentation/PowerShell/Get-RpcFilterEvent.md |
| schema | 2.0.0 |
Gets RPC audit events from the Security log.
Get-RpcFilterEvent [[-ComputerName] <String>] [[-MaxEvents] <Int64>] [<CommonParameters>]
This cmdlet retrieves RPC audit events from the Security log on the specified computer. By default, it retrieves events from the local computer. The maximum number of events to retrieve can be specified using the -MaxEvents parameter. The cmdlet must be run with elevated privileges to access the Security log.
PS C:\> Get-RpcFilterEventRetrieves RPC audit events from the Security log on the local computer.
PS C:\> Get-RpcFilterEvent -ComputerName RemotePC -MaxEvents 100Retrieves the last 100 RPC audit events from the Security log on the specified remote computer.
The name of the computer to query.
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 1
Default value: Localhost
Accept pipeline input: True (ByValue)
Accept wildcard characters: FalseThe maximum number of events to retrieve.
Type: Int64
Parameter Sets: (All)
Aliases:
Required: False
Position: 2
Default value: 9223372036854775807
Accept pipeline input: False
Accept wildcard characters: FalseThis cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.