HOW to disable WLAN driver

    技术2022-05-13  17

    Unbinding DOES NOT CHANGE THE REGISTRY. It simply tells NDIS that you don't want the adapter 'connected' right now. It's an operation that you perform by calling NDIS.The disable setting is of the form:[HKEY_LOCAL_MACHINE/Comm/NdisPower]<adaptername>=dword:00000004so, something like this:[HKEY_LOCAL_MACHINE/Comm/NdisPower]"SDCCF10G1"=dword:00000004Where SDCCF10G is the adapter name and the trailing "1" is the instance of the adapter.To reenable the adapter, remove this entry and BIND the adapter


    最新回复(0)