What's new

Wifi coming back from hibernate?

goodintentions

Active Member
I've been updating my i5 sp3 to the latest everything since yesterday. So far, I really like how well made this thing is. Visual studio is working great on it.

One thing I've noticed is coming back from hibernate even though WiFi is connected there's no internet. I have to disconnect and reconnect to get it working again.

It's not that much of a hassle, but anyone know how I can resolve this?
 

JimB

Member
No solution for this problem. you'll need to create a task scheduler event, triggering this custom event filter:

<QueryList>
<Query Id="0" Path="System">
<Select Path="System">*[System[Provider[@Name='Microsoft-Windows-Power-Troubleshooter'] and (Level=4 or Level=0) and (EventID=1)]]</Select>
</Query>
</QueryList>

Create this .cmd in a text file and execute:

netsh int set int wi-fi disabled
netsh int set int wi-fi enabled
 

ctitanic

Well-Known Member
Again, the user has Visual Studio installed and that enables Hyper-V. Once Hyper-V is enabled the Wifi will fail when coming back from Hibernation, it's a known issue.
 

JimB

Member
I also have visual studio installed and hyper v is disabled so there are other factors causing this.
 

ctitanic

Well-Known Member
I also have visual studio installed and hyper v is disabled so there are other factors causing this.
Are you sure?
Try this

bcdedit /set hypervisorlaunchtype off

Restart and check if you still have the issue.
 
Top