Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
; AutoHotkey script to force LAN link speed and duplex mode to AUTO
; Recognises Intel PRO/100 and Broadcom NetXtreme + NetLink chipsets only
; Assumes Folder Options/Tasks='Windows classic folders' setting
; If the card setting was different than Auto then PC will experience
; short loss of network access during net card reset
; Let PC load settle before running the script (3 min)
Sleep 180000
; Open Network Connections
Run ncpa.cpl
WinWaitActive, Network Connections,
; Pick the first (alphabetically) object starting with L and open its Status window
Send, L{ENTER},
WinWaitActive, Local Area,
; Press Properties button to open its window
Send, {SPACE},
sleep, 200
WinWait, Local Area,
IfWinNotActive, Local Area, , WinActivate, Local Area,
WinWaitActive, Local Area,
; Press Configure button to open h/w Properties window
sleep 1000
Send, {ENTER},
Sleep 5000
; Select Advanced tab and then select Property list
Send, {TAB 4},
Send, {RIGHT}{TAB}
;Which card?
;For Speed&Duplex select Auto value and close Properties window
IfWinExist, Broadcom NetXtreme
{
Send, s{TAB}a{TAB}{ENTER}
}
Else IfWinExist, Broadcom NetLink
{
Send, s{TAB}a{TAB}{ENTER}
}
Else IfWinExist, Intel(R) PRO/100
{
Send, l{TAB}a{TAB}{ENTER}
}
Else
{
MsgBox Your PC uses neither Intel nor Broadcom chipset`n`nUse Control Panel/Network Connections/Properties/Configure/Advanced`n to set Link Speed to Auto
WinClose, A
}
;Close Status and Network Connections Windows
WinClose Local Area
WinClose Network Connections