ishmaelcallme Posted July 3, 2006 Posted July 3, 2006 I tried searching, but after looking thru 25 pages, I saw nothing on this topic. I need to programmatically find out what the speed of network connections for local NICs are. I.E. one of the following: 10Mbps, 100Mbps or 1Gbps. I know the info is available since it is on the "Network Status" window that you get when doubleclicking on that network (when it is up) from the "Network Connections" window. I have a kluge that reads the value off of the above window, but it fails when that link is down, and as a matter of fact will disable the link because when you call the shortcut for that network connection when it is down, it will disable it for some odd unknown but frustrating reason. It is probably in some obscure dll or COM call, but after days of seaching, I cant find that, either. Perhaps I am just no good at searching! Thanks.
ishmaelcallme Posted July 3, 2006 Author Posted July 3, 2006 Found it after all (I think) in Scriptomatic. Under root\WMI there is a MSNdis_LinkSpeed property. Opt('TrayMenuMode',1) TraySetToolTip ('MSNdis_LinkSpeed') const $wbemFlagReturnImmediately = 0x10 const $wbemFlagForwardOnly = 0x20 $colItems = '' $output='' $strComputer = 'localhost' $objWMIService = ObjGet('winmgmts:\\' & $strComputer & '\root\WMI') $colItems = $objWMIService.ExecQuery('SELECT * FROM MSNdis_LinkSpeed', 'WQL', _ $wbemFlagReturnImmediately + $wbemFlagForwardOnly) If IsObj($colItems) Then For $objItem In $colItems $output&='Active:' & Not(Not($objItem.Active)) & @CRLF $output&='InstanceName:' & String($objItem.InstanceName) & @CRLF $output&='NdisLinkSpeed:' & $objItem.NdisLinkSpeed & @CRLF If Msgbox(1,'WMI Output',$Output) = 2 Then ExitLoop $output='' Next EndIf Func WMIDateStringToDate($dtmDate) Return (StringMid($dtmDate, 5, 2) & '/' & _ StringMid($dtmDate, 7, 2) & '/' & StringLeft($dtmDate, 4) _ & ' ' & StringMid($dtmDate, 9, 2) & ':' & StringMid($dtmDate, 11, 2) & ':' & StringMid($dtmDate,13, 2)) EndFunc
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now