Share this page 

Detect if a network is presentTag(s): WinAPI/Registry


[external function declaration]
FUNCTION Integer GetSystemMetrics (Integer nIndex) LIBRARY "user32.dll"

[powerscript]
integer SM_NETWORK = 63

IF GetSystemMetrics(SM_NETWORK) > 0 THEN
    MessageBox("", "Network is up")
END IF
See this related HowTo