Work offline dialog box?

J

Jack Ruggan

I have a device that connects to our our server via rj45 only thru IE6.
when I remove the rj45 a dialog box pops up saying would your like to work
offline or try again. I never want that dialog box to come up, let it keep
trying again. or always think it has a good lan connection, otherwise
someone might click work offline and then we are hosed and need a reboot.
This issue only started in SP2.

Any ideas on what to do? I have disable the sp2 windows firewall and
unchecked it from the setting under networking. Since dialup networking is
a required component I can't get rid of that.

Thanks
J
 
K

KM

Jack,

I don't really know where the problem is as I didn't quite understand why you wouldn't expect the Offline Mode dialog coming up if
you unpluged the network jack.

But remembering some changes in functionality on SP2 I'd like to suggest you to disable the new SP2 Slow Link Speed policy.
Set [HKLM\Software\Microsoft\Windows\CurrentVersion\NetCache],"GoOfflineOnSlowLink"=dword:0 and see if it helps not getting the
dialog.

Also, I'd suggest you to check permissions of [HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings] "GlobalUserOffline"
key and trying to always keep it set to 0. Or with an API call like:
INTERNET_CONNECTED_INFO ici = { 0 };
ici.dwConnectedState = INTERNET_STATE_CONNECTED;
InternetSetOption(NULL, INTERNET_OPTION_CONNECTED_STATE, &ici, sizeof(ici));
(http://www.devx.com/vb2themax/Tip/18571)

Let us know if it helps.

KM
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top