作者GodIsland (搞不定嗎用C4就對了)
看板EzHotKey
標題[-AI-] 取得網路卡連線速度
時間Wed Aug 30 09:31:49 2017
https://www.autoitscript.com/forum/topic/93409-network-link-speed/
$strServer = "."
$objWMI = ObjGet("winmgmts://" & $strServer & "/root\WMI")
$objInstances = $objWMI.InstancesOf("MSNdis_LinkSpeed",48)
For $objInstance in $objInstances
With $objInstance
;ConsoleWrite( .Active & @CRLF)
ConsoleWrite( .InstanceName & @CRLF)
ConsoleWrite( .NdisLinkSpeed & @CRLF)
EndWith
Next
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 60.250.204.229
※ 文章網址: https://webptt.com/m.aspx?n=bbs/EzHotKey/M.1504056713.A.1E5.html
1F:推 jonce007: 讚! 不知道AHK有沒有類似功能。 12/09 12:12