4

On Linux all guides show that the wireless interface is wlan0, but on windows there is no obvious documentation on how you discover the name of your interface.

I'm trying to run this command to test packet injection aireplay-ng -9 wlan0

regularjoe
  • 221
  • 2
  • 3
  • 7

2 Answers2

2

To get a list of interfaces:

netsh wlan show interfaces

To get a list of networks:

netsh wlan show networks
2
netsh wlan show all

should show you information about all wireless adapters.

Ohnana
  • 681