5

I'm working with basic windump commands. After I close the windump, my pc is slowly and cpu range is high. How to check if promiscuous mode is enabled on network interface in windows server 2012 R2.

A.Kemal
  • 68
  • 1
  • 1
  • 4

1 Answers1

4

Powershell.

Get-NetAdapter | Format-List -Property PromiscuousMode

That'll give you true or false.

vigilem
  • 579
  • 2
  • 7