Windows 10 No wireless network after reboot

raygo1975

Senior Member
Joined
Nov 14, 2018
Location
Sebastian, Florida
Running Windows 10 home with all updates applied on HP Laptop
On a reboot I have to go into services and manually start WLANSVC (WLAN AutoConfig) before I can get my wireless NIC to connect to my wireless network.
I also have to manually start Windows Audio before my audio system on the laptop will work.
These two services are both suppose to start automatically but after a reboot they do not start until I go into services and start them manually.
This seems to have started since the last update to windows. I am curious if anyone else is having this issue and if there is a way to fix it?
Any and all help is appreciated.
Two screen shots show before I start WLANSVC (right after the reboot) and after I start WLANSVC.
 

Attachments

  • WLANSVC001.png
    WLANSVC001.png
    442.7 KB · Views: 196
  • WLANSVC002.png
    WLANSVC002.png
    434.9 KB · Views: 192
I'd start by looking in the system log for errors. This should pull them quickly with powershell

Get-EventLog -LogName system -EntryType error,warning -Newest 1000 | ? { $_.Message -like "*wlan auto*" } | ft -AutoSize -Wrap
 
Back
Top Bottom