There is a file changeMac.bat.
@echo off netsh interface set interface "Local Area Connection" disable reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0007 /v NetworkAddress /d 002622D90EFC /f netsh interface set interface "Local Area Connection" enable echo Ok, enjoy it :)
You can change three places: Local Area Connection , 0007 , 002622D90EFC . Note : you must open regedit to find out that you must change the argument 0007 . The Mac address has some rules: the second bit must be one of the following numbers: 0 2 6 A E.
There is RecoveryMac.bat that you may need.
@echo off netsh interface set interface "Local Area Connection" disable reg delete HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}\0007 /v NetworkAddress /f netsh interface set interface "Local Area Connection" enable echo Ok,enjoy it :)
source share