3

Can anyone tell me how to tweak my laptop so that the wireless access does not get disabled after a short period (approx 15 min) of inactivity. It's really annoying to have to reconnect every time this happens.

Using an Atheros AR9285 wireless card in an Asustek N61Jv laptop.

Pete
  • 31

2 Answers2

1

For vpn [works on xp, win7]
Start/Run/Regedit
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\LanmanServer\Parameters.
In the right pane, find Autodisconnect and change the time accordingly.
Also from this link a net.config option.
From ComputerHope Forum

mic84
  • 2,413
0

Open notepad.exe and paste this code

set wshShell = Wscript.CreateObject("wscript.Shell")
hours = 24 ' set hours
for i = 1 to hours*60
beep = chr(007)
wscript.sleep(1000*60*10)
next
WshShell.Run "cmd /c @echo " & beep, 0

save the file as fileName.vbs and run it. this will disallow your computer to go to sleep as it will play a beep sound every 10 minutes.