PowerTip: Add Hyper-V network switch to network packet capture session

Doctor Scripto

Summary: Learn how to add a Hyper-V virtual switch as a filter for a remote packet capture session.

Hey, Scripting Guy! Question How can I use Windows PowerShell to add a Hyper-V Virtual switch as a provider for a remote packet capture session?

Hey, Scripting Guy! Answer Use the Add-NetEventVmSwitch cmdlet and specify the name of the switch. In the following commands, I create a new event session, specify a packet capture provider, and then add the Hyper-V switch:

PS C:\>New-NetEventSession -Name “NESession01”

PS C:\> Add-NetEventPacketCaptureProvider -SessionName “NESession01”

PS C:\> Add-NetEventVMSwitch -Name “Network Adapter 2 – Virtual Switch”

 

0 comments

Discussion is closed.

Feedback usabilla icon