Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change MAC address with batch file on Windows 7? [closed]

I want to change with simple click (using a batch file) the MAC address of my wireless device. How I'll accomplish this? It needs to choose a random MAC address.

like image 345
ilhan Avatar asked Jan 06 '12 03:01

ilhan


1 Answers

I am not sure if this is completely correct but it would be something like:

In a .reg file

REGEDIT4

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0009]
"NetworkAddress"="000011112222"

The 0009 would have to change to match the address you your adapter.

like image 127
Axis Avatar answered Sep 26 '22 21:09

Axis