raygo1975

Senior Member
Joined
Nov 14, 2018
Messages
1
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.webp
    WLANSVC001.webp
    154.6 KB · Views: 196
  • WLANSVC002.webp
    WLANSVC002.webp
    154.6 KB · Views: 192
Solution
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
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
 

Solution
Back
Top