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.
Asked
Active
Viewed 1.5k times
1 Answers
4
Powershell.
Get-NetAdapter | Format-List -Property PromiscuousMode
That'll give you true or false.

vigilem
- 579
- 2
- 7
-
1I'd add the property `ifAlias` in case he has more than one interface `Get-NetAdapter | Format-List -Property ifAlias,PromiscuousMode` – Mass Nerder Jan 28 '16 at 21:55
-
Makes good sense - nice catch. – vigilem Jan 29 '16 at 13:04