PowerShell Logo Small

Set-NetEventProvider



This is the built-in help made by Microsoft for the command 'Set-NetEventProvider', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Modifies settings for an ETW provider.

SYNTAX


Set-NetEventProvider [[-Name] [<String[]>]] [[-Level] [<Byte>]] [[-MatchAnyKeyword] [<UInt64>]] [[-MatchAllKeyword] [<UInt64>]] [-CimSession [<CimSession[]>]] [-PassThru]
[-ThrottleLimit [<Int32>]] [-Confirm] [-WhatIf] [<CommonParameters>]
Set-NetEventProvider [[-Level] [<Byte>]] [[-MatchAnyKeyword] [<UInt64>]] [[-MatchAllKeyword] [<UInt64>]] [-AssociatedCaptureTarget [<CimInstance>]] [-CimSession
[<CimSession[]>]] [-PassThru] [-ThrottleLimit [<Int32>]] [-Confirm] [-WhatIf] [<CommonParameters>]
Set-NetEventProvider [[-Level] [<Byte>]] [[-MatchAnyKeyword] [<UInt64>]] [[-MatchAllKeyword] [<UInt64>]] [-AssociatedEventSession [<CimInstance>]] [-CimSession
[<CimSession[]>]] [-PassThru] [-ThrottleLimit [<Int32>]] [-Confirm] [-WhatIf] [<CommonParameters>]
Set-NetEventProvider [[-Level] [<Byte>]] [[-MatchAnyKeyword] [<UInt64>]] [[-MatchAllKeyword] [<UInt64>]] [-CimSession [<CimSession[]>]] [-PassThru] [-ThrottleLimit
[<Int32>]] [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Set-NetEventProvider cmdlet modifies settings for an Event Tracing for Windows (ETW) provider.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkID=294403
Add-NetEventProvider
Get-NetEventProvider
New-NetEventSession
Remove-NetEventProvider
Get-NetEventNetworkAdapter
Get-NetEventVmNetworkAdapter
Get-NetEventVmSwitch
Get-NetEventSession

REMARKS

<

Examples


Example 1: Modify an ETW provider

PS C:\>New-NetEventSession -SessionName "Session01"
PS C:\> Add-NetEventProvider -Name "Microsoft-Windows-TCPIP" -SessionName "Session01"
PS C:\> Set-NetEventProvider -Name "Microsoft-Windows-TCPIP" -Level 3



This example modifies an ETW provider.

The first command uses the New-NetEventSession cmdlet to create a new session named Session01.

The second command uses the Add-NetEventProvider cmdlet to add a provider named Microsoft-Windows-TCPIP to the session named Session01.

The third command modifies the logging level for the provider named Microsoft-Windows-TCPIP.