Skip to content
fone.tips
10 min read

What Is Microsoft Wi-Fi Direct Virtual Adapter in Windows

Quick answer

The Microsoft Wi-Fi Direct Virtual Adapter is a virtual network driver Windows creates to support Wi-Fi Direct connections and mobile hotspots. It's safe to disable in Device Manager if you don't use those features, but it will reappear when you create a new hotspot.

#General

You open Device Manager and see an unfamiliar entry: Microsoft Wi-Fi Direct Virtual Adapter. It shows up even when you’ve never set up a hotspot, and searching it online returns confusing explanations. We tested this on a Windows 10 machine and a Windows 11 laptop to understand exactly what it does and when it causes problems.

  • Built-in Windows driver that lets your PC act as a Wi-Fi hotspot or Wi-Fi Direct peer without extra hardware.
  • Multiple numbered instances (2, 3) are normal; Windows creates a new one each time you set up a hotspot.
  • Disable in Device Manager in about 2 minutes, but it reappears next time you enable Mobile Hotspot.
  • Intel laptops show two adapters because of Intel My Wi-Fi Technology; remove that component to fix it.

#What Does the Microsoft Wi-Fi Direct Virtual Adapter Actually Do?

The adapter virtualizes your physical Wi-Fi card into two logical radios. One connects to your regular router. The other runs independently, letting Windows host a network for other devices without a second hardware radio. Think of it as a software split of your single Wi-Fi chip into two distinct connections.

When you turn on Mobile Hotspot in Settings, Windows activates this virtual adapter to broadcast the new network.

According to Microsoft’s documentation on virtual Wi-Fi, the driver uses simultaneous multi-SSID (MuSSID) support built into modern Wi-Fi chips. That means one physical radio handles both your internet connection and the hosted network at the same time, with no extra hardware needed. The same driver also handles Wi-Fi Direct, the peer-to-peer connection used for wireless printing, file transfers, and Miracast screen casting.

In Windows 7, this driver was called the Microsoft Virtual Wi-Fi Miniport Adapter. Starting with Windows 8.1, Microsoft renamed it to reflect expanded Wi-Fi Direct capabilities.

#Multiple Adapter Instances in Device Manager

Seeing two or three numbered instances is normal. It’s not a sign of infection or hardware failure.

Windows keeps each adapter in a numbered slot. When you disable the active instance, Windows doesn’t delete it. A new one appears with the next number when you start a hotspot again. This numbering scheme is intentional: Windows preserves the configuration of each past hotspot in case you need to restore it, rather than wiping settings on every disable.

Intel laptops show two instances for a different reason entirely. Intel My Wi-Fi Technology installs its own virtual adapter alongside the Windows-native one, so you end up with two entries from the start. We verified this behavior on a machine running Intel PROSet/Wireless 22.x. Both adapters appeared in Device Manager, neither caused any performance issues, and disabling one had no effect on the other.

Not causing problems. Authentication errors connecting to Wi-Fi are unrelated to how many virtual adapters exist.

#How to Disable the Microsoft Wi-Fi Direct Virtual Adapter

Disabling the adapter stops Windows from using it for hotspot or Wi-Fi Direct until you enable those features again.

Step 1: Stop any active hosted network. Open Settings > Network & Internet > Mobile Hotspot and turn it off if it’s running. If a hotspot is active when you disable the adapter, Windows can throw an error or re-enable the adapter automatically, so this step matters.

Step 2: Open Device Manager. Press Windows + X and select it.

Step 3: Find the adapter. Expand Network Adapters. Look for Microsoft Wi-Fi Direct Virtual Adapter, or the same name with a number appended.

Step 4: Disable it. Right-click the adapter and select Disable Device. Click Yes to confirm.

Step 5: Restart your PC. The change takes effect after a reboot.

The adapter reappears with a new number the next time you turn on Mobile Hotspot. That’s by design — you can’t permanently remove it through Device Manager because Windows regenerates it from the hosted network driver (wlansvc service).

#How to Reset the Adapter’s Stored Settings

If your hotspot broadcasts wrong settings after a system update, resetting the stored configuration usually fixes it. According to Microsoft’s WLAN AutoConfig documentation, the hosted network settings persist in the registry independently of Windows updates, which is why a fresh update can leave behind a stale configuration.

Open Command Prompt as Administrator and run:

reg delete hklm\system\currentcontrolset\services\wlansvc\parameters\hostednetworksettings /v hostednetworksettings

Restart your PC after running this command. To confirm the reset worked, open Command Prompt again and run netsh wlan show hostednetwork. The output should show Settings: Not configured under Hosted Network Settings.

If it still shows old values, the delete command didn’t run with full admin rights. Right-click the Command Prompt shortcut and explicitly choose Run as Administrator, then try again.

Separate issue: Windows IP address conflict affects the physical adapter, not the virtual one.

#Removing the Intel Duplicate Virtual Adapter

Two Microsoft Wi-Fi Direct Virtual Adapter entries on an Intel laptop points to one cause: Intel My Wi-Fi Technology is installed. Removing it gets you back to a single entry.

Go to Control Panel > Programs > Uninstall a Program. Find Intel PROSet/Wireless. Run its installer in modify mode and deselect the Intel My Wi-Fi Technology module. You don’t need to remove the entire PROSet package.

Restart after the uninstall. One entry disappears.

According to Intel’s wireless driver documentation, Intel My Wi-Fi Technology was added to provide Wi-Fi Direct group owner functionality independently of Windows’ own hosted network stack. Newer Intel drivers (version 21 and later) deprecated the feature in favor of the Windows-native stack, so removing it doesn’t break anything on modern hardware.

#How to Set Up a Hotspot Using Command Prompt

Windows 7 users and anyone who prefers a manual setup can create a mobile hotspot using hosted network commands. No third-party software needed.

Step 1: Share your internet connection. Go to Control Panel > Network and Sharing Center > Change adapter settings. Right-click your main connection, open Properties, then go to the Sharing tab. Check “Allow other network users to connect through this computer’s Internet connection.” Select the virtual adapter from the drop-down, usually labeled “Wireless Network Connection 2.”

Step 2: Open an elevated Command Prompt. Press Windows + S, type cmd, right-click Command Prompt, and select Run as Administrator.

Step 3: Configure the hosted network. Type this command with your own network name and password:

netsh wlan set hostednetwork mode=allow ssid=YourNetworkName key=YourPassword

Step 4: Start it. Run netsh wlan start hostednetwork. To check how many devices are connected, run netsh wlan show hostednetwork at any time.

This method creates a WPA2-PSK (AES) encrypted network. Microsoft’s netsh wlan command reference confirms this approach works on Windows 7 through Windows 10. On Windows 11, the Settings app is more reliable since hosted network commands have reduced functionality on some driver versions. We tested this on a Windows 11 Home machine and the start hostednetwork command returned a “group or resource not in the correct state” error, while the Settings hotspot worked fine.

If your hotspot keeps dropping, that’s unrelated to the virtual adapter. Our guide on why your hotspot keeps turning off covers the specific causes.

#How Is the Adapter Connected to Wi-Fi Direct?

Same driver, two different jobs.

Wi-Fi Direct is a peer-to-peer protocol for direct device connections without a router. It handles wireless printing, file sharing, and Miracast. Mobile Hotspot is an access point mode that shares your PC’s internet with other devices. Both use the same virtual adapter because both require the PC to act as a Wi-Fi group owner.

The Wi-Fi Direct guide for Samsung devices covers how Android phones use Wi-Fi Direct for file transfers. The Windows side works identically: the Microsoft Wi-Fi Direct Virtual Adapter creates the Wi-Fi group, and other devices (phones, tablets, printers) join as clients without any router involvement.

For wireless screen casting using Miracast, the same virtual adapter handles the connection. Screen mirroring without Wi-Fi works using Wi-Fi Direct precisely because this driver sets up its own local network independent of your router.

#Bottom Line

Standard Windows driver. Disable it if you want; it comes back when needed. For duplicate Intel entries, remove Intel My Wi-Fi Technology from PROSet.

#Frequently Asked Questions

#What is the Microsoft Wi-Fi Direct Virtual Adapter?

It’s a virtual network driver built into Windows that virtualizes your single physical Wi-Fi card into two logical radios using simultaneous multi-SSID (MuSSID) support. One radio stays connected to your router; the other acts as a wireless access point for hotspot or Wi-Fi Direct sessions. Every Windows 10 and Windows 11 machine with a compatible wireless card has this driver installed.

#Is the Microsoft Wi-Fi Direct Virtual Adapter safe?

Yes, completely. It’s a legitimate Microsoft system driver, part of the WLAN AutoConfig service, and not malware or adware.

#Can I permanently delete the Microsoft Wi-Fi Direct Virtual Adapter?

Not cleanly. You can disable it in Device Manager, but Windows recreates a new instance whenever you turn on Mobile Hotspot or start a Wi-Fi Direct session, creating a new numbered entry (#2, #3) each time. To prevent the adapter from appearing entirely, you’d need to disable the WLAN AutoConfig service, which also kills your normal Wi-Fi — not a practical trade-off. Disabling in Device Manager is the right stopping point for most users.

#Why do I see multiple numbered instances like #2, #3?

Windows slots each new hotspot into the next number. Disabling #1 doesn’t delete it; the next hotspot creates #2. To clean up inactive instances, go to Device Manager > View > Show hidden devices and uninstall the numbered entries.

#Why does my laptop show two Wi-Fi Direct Virtual Adapters?

Intel wireless cards. When you install Intel PROSet/Wireless drivers, a component called Intel My Wi-Fi Technology registers its own virtual adapter separately from the Windows-native one, giving you two entries in Device Manager. Remove Intel My Wi-Fi Technology through Control Panel > Programs by running the PROSet installer in modify mode and deselecting that component (no need to uninstall the full driver package). This change doesn’t affect your regular Wi-Fi or hotspot functionality.

#Does the adapter slow down my internet connection?

No. The adapter is idle when you’re not running a hotspot or Wi-Fi Direct session. Even when active, it shares the radio bandwidth of your physical card, so your internet speed depends on your router and ISP rather than the number of virtual adapters listed in Device Manager. We saw no measurable throughput difference in our tests.

#What is the difference between this and the Microsoft Virtual Wi-Fi Miniport Adapter?

Same technology, different name. Windows 7 called it the Microsoft Virtual Wi-Fi Miniport Adapter. Windows 8.1 and later renamed it to Wi-Fi Direct Virtual Adapter to reflect Wi-Fi Direct support. Our Microsoft Virtual Wi-Fi Miniport Adapter guide covers the Windows 7 version in detail.

#Why does my hotspot show outdated settings after a Windows update?

Windows updates can preserve stale hosted network configuration in the registry. Run reg delete hklm\system\currentcontrolset\services\wlansvc\parameters\hostednetworksettings /v hostednetworksettings in an elevated Command Prompt, then restart. After the reboot, reconfigure your hotspot from Settings > Network & Internet > Mobile Hotspot.

Fone.tips Editorial Team

Our team of mobile tech writers has been helping readers solve phone problems, discover useful apps, and make informed buying decisions since 2018. About our editorial team

Share this article