Summary: Learn how to add a Hyper-V virtual switch as a filter for a remote packet capture session.
How can I use Windows PowerShell to add a Hyper-V Virtual switch as a provider for a remote packet capture session?
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