Network strength widget

I can't seem to get this one to work.

When the computer boots up, it shows the wiget, and a number, which does not seem correct.

Then it dosen't update ever, even if i manually update it.

However, it does see which network i'm connected to, but if i connect to another, it won't notice.

#468188

That's a known issue in this widget/docklet. Go to ...DockletsSysStatsscripts and open WiFiStrength.vbs with a text editor, then correct this line:

newValue = objMSN80211RSS.Ndis80211ReceivedSignalStrength + 100

Put the right number for your router for the 100 according to the values the widget/docklet should show. To make sure the number doesn't get too high at peaks, I added this line right below the one I posted before:

if newValue > 100 then NewValue = 100.

Regards, Boris

#479945