Occasionally, after signing in to my laptop I find that my WIFI is disconnected. I've haven't actioned any of the advice offered on the forum about re-installing the driver or making other software upgrades. Instead, I invoke the following .bat file script from a desktop shortcut, which restores the connectivity in about 10 seconds. The kludge, while less than ideal, at least saves wasting the aeons needed to perform a reboot, which of course in my case would also work. Perhaps, the script might prove helpful to other members.
Rem Script to reenable the wireless device card (NIC), which has taken to going intermittently AWOL!
Rem Shortcut has been created on desktop, but needs to run as administrator to successfully work.
wmic path Win32_PnPEntity where "name='Qualcomm Atheros QCA9377 Wireless Network Adapter'" call disable
wmic path Win32_PnPEntity where "name='Qualcomm Atheros QCA9377 Wireless Network Adapter'" call enable
Rem pause