批处理命令修改USB无线网卡mac地址

使用工具:TendaUSB无线网卡

操作系统:xp

程序:devcon.exe

操作步骤:

编写批处理文件(需要注意的是devcon.exe需要和批处理文件一个文件夹)

@ECHO off 
for /f "delims= " %%i in (macc.txt) do reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002bE10318}\0010  /v NetworkAddress /d %%i /f&devcon disable *DEV_0770*&devcon enable *DEV_0770*&echo wscript.sleep 120000>sleep.vbs&start /wait sleep.vbs&del /f /s /q sleep.vbs
命令解释

1.for循环

2.macc.txt文件中存mac地址使用空格隔开

3. reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002bE10318}\0010  /v NetworkAddress /d %%i  /f将文件中的mac写到对应的无线网卡的注册表下(可以通过regedit到注册表中查找相应的位置)

4.devcon disable *DEV_0770*&devcon enable *DEV_0770*关闭和启动USB设备,这个可以通过devcon find pci\*命令查看是哪个设备ID填到**之间

5.echo wscript.sleep 120000>sleep.vbs&start /wait sleep.vbs&del /f /s /q sleep.vbs延时操作用于让设备重新启动

注:devcon.exe下载地址后续补充谢谢

华love邵


你可能感兴趣的:(批处理命令修改USB无线网卡mac地址)