美文网首页
Intel(R) Dual Band Wireless-AC 3

Intel(R) Dual Band Wireless-AC 3

作者: upon_the_road | 来源:发表于2018-12-09 13:19 被阅读0次

    Only thing that took me some tries and searching was the fact that Microsoft restricts spoofing for wireless cards in Windows, so that you have to use 2,6,A or E for the second character.

    So your MAC has to follow one of these patterns:

    X2-XX-XX-XX-XX-XX
    
    X6-XX-XX-XX-XX-XX
    
    XA-XX-XX-XX-XX-XX
    
    XE-XX-XX-XX-XX-XX
    

    If you add the following to your registry you should even be able to edit it again in the advanced configuration options. BUT BEWARE to find the correct ID number for your wireless adapter. So please change the key name "0002" in the following code to the correct number for your card. To find that go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class{4d36e972-e325-11ce-bfc1-08002be10318} in the registry and look through the keys named "0000", "0001" etc. and look for their "DriverDesc" values when making a *.reg file and before adding it to your registry.

    Code for registry file is the following:

    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4d36e972-e325-11ce-bfc1-08002be10318}\0002\Ndi\Params\NetworkAddress]
    
    "ParamDesc"="Network Address"
    
    "default"="000000000000"
    
    "LimitText"="12"
    
    "Optional"="1"
    
    "type"="edit"
    
    "UpperCase"="1"
    

    把上面的文本保存为注册表,添加进系统。
    我的设备是AC-3165
    网卡在注册表中的编号是0019
    在确定的网卡编号上点击右键,选择“新建 - 字符串值”,然后把新建的字符串值命名为NetworkAddress。
    双击NetworkAddress值打开编辑字符串窗口,把数值数据设置为你想修改成的MAC地址即可。
    最好遵守上面的规则。
    在cmd下查看mac地址:(只有在连接上wifi后显示的才是对的。)
    netsh wlan show interface
    见贴子:https://superuser.com/questions/966084/change-mac-address-of-intelr-dual-band-wireless-ac-7260

    相关文章

      网友评论

          本文标题:Intel(R) Dual Band Wireless-AC 3

          本文链接:https://www.haomeiwen.com/subject/bdghhqtx.html