Windows OS Hub
  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux

 Windows OS Hub / Windows Server 2019 / How to Enable Wireless (Wi-Fi) on Windows Server 2019/2016

June 8, 2023

How to Enable Wireless (Wi-Fi) on Windows Server 2019/2016

By default, wireless (Wi-Fi) support is disabled in all Windows Server 2022/2019/2016/2012R2 versions. If you plug a Wi-Fi network adapter (USB or PCI) into a host running Windows Server, you cannot enable it in the Control Panel. I will show how to enable wireless support on Windows Server in this short note.

Connect a physical Wi-Fi adapter to a Windows Server host and install the drivers. Make sure that the new adapter has appeared in the Network Adapters section of the Device Manager (devmgmt.msc).

Open the PowerShell console as administrator and make sure that the Wireless LAN Service is not installed.

Get-WindowsFeature *Wireless*

Wireless LAN Service in not enabled in WIndows Server by default

You can use the Install-WindowsFeature PowerShell cmdlet to install a feature or role on Windows Server.

Install-WindowsFeature -Name Wireless-Networking

Install-WindowsFeature Wireless-Networking

Or install the Wireless LAN Service using the Server Manager (Add Roles and Features -> Features).

Install Wireless LAN Service in Server Manager

After the installation is complete, reboot the host:

shutdown –f –r –t 0

After the restart, the Wireless LAN Service (WLAN AutoConfig) appears in Windows, but it is disabled by default. Start the service and change its startup type to automatic:

Set-Service WlanSvc –startuptype automatic –passthru
Start-Service WlanSvc –PassThru

checking WlanSvc on Windows Server

Then navigate to the Network Sharing Center in the Control Panel (ncpa.cpl) and enable the Wi-Fi adapter manually (right-click it and select Enabled).

connect wifi on windows server

The wireless networking feature has been removed in Windows Server Core 2022, so you cannot connect to and configure a wireless network connection in Server Core.

Now you can connect to a Wi-Fi network (you can check the Wi-Fi signal strength of available access points using PowerShell ) or even create a Wi-Fi access point on your Windows Server.

This guide has been tested on Windows Server 2019 and 2016.

3 comments
12
Facebook Twitter Google + Pinterest
PowerShellWindows Server 2019Windows Server 2022
previous post
Managing Calendar Permissions on Exchange Server and Microsoft 365
next post
Fixing VPN Error: Can’t Establish Connection, Change Network Settings

Related Reading

How to Repair EFI/GPT Bootloader on Windows 10...

March 16, 2024

How to Restore Deleted EFI System Partition in...

March 11, 2024

How to Run Program without Admin Privileges and...

June 8, 2023

How to Repair Windows Boot Manager, BCD and...

March 11, 2024

PowerShell: Get Folder Size on Windows

April 2, 2024

How to Convert (Upgrade) Windows Server Evaluation to...

March 15, 2024

Fix: BSOD Error 0x0000007B (INACCESSABLE_BOOT_DEVICE) on Windows

March 17, 2024

How to Find the Source of Account Lockouts...

March 12, 2024

3 comments

Russ January 5, 2023 - 7:34 pm

Thank you for posting this. I am not that experienced in Server OS and didnt know WiFi adapters were disabled by default. explains why my adapter didnt work. Even the adapter manufacturer tech support is clueless on Server OS installations, told me to change my OS.

Reply
MGumbs March 1, 2024 - 3:13 pm

Thanks For the post…
Help me a lot!!!

Reply
KTD March 3, 2024 - 9:37 pm

Like a charm, it works. Thanks a ton

Reply

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Recent Posts

  • Encrypt Any Client-Server App Traffic on Windows with Stunnel

    June 12, 2025
  • Failed to Open the Group Policy Object on a Computer

    June 2, 2025
  • Remote Desktop Printing with RD Easy Print Redirection

    June 2, 2025
  • Disable the Lock Screen Widgets in Windows 11

    May 26, 2025
  • Configuring Windows Protected Print Mode (WPP)

    May 19, 2025
  • Map a Network Drive over SSH (SSHFS) in Windows

    May 13, 2025
  • Configure NTP Time Source for Active Directory Domain

    May 6, 2025
  • Cannot Install Network Adapter Drivers on Windows Server

    April 29, 2025
  • Change BIOS from Legacy to UEFI without Reinstalling Windows

    April 21, 2025
  • How to Prefer IPv4 over IPv6 in Windows Networks

    April 9, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • Install and Manage Windows Updates with PowerShell (PSWindowsUpdate)
  • How to Download Offline Installer (APPX/MSIX) for Microsoft Store App
  • How to Delete Old User Profiles in Windows
  • Fix: Remote Desktop Licensing Mode is not Configured
  • Configuring Port Forwarding in Windows
  • How to Install Remote Server Administration Tools (RSAT) on Windows
  • Start Menu or Taskbar Search Not Working in Windows 10/11
Footer Logo

@2014 - 2024 - Windows OS Hub. All about operating systems for sysadmins


Back To Top