"SeanFromIT" <> wrote in message
news:9E08D3B1-07B8-4E62-999D-...
>I run Windows XP SP2 but cannot access version 5 of the Windows Update site,
....
> why do Microsoft sites think I'm running Windows 2000 when I'm not?
This could be a question of User-Agent--what is IE sending
with its requests and what is being received.
(extract from a recent reply concerning a similar symptom)
I suspect it is not your browser which is telling you that but the
application your browser is connecting to. The thing that you have
to think about then is what might be between your browser and the
application. You mention some kind of security package. Can it
intercept the requests that your browser makes and modify them?
Specifically can it make changes to the User-Agent string that each
request contains? If so, that could explain your symptom.
It's pretty simple to test this idea by comparing the User-Agent string
which should be sent with the User-Agent string which is received.
For example, here are some suggestions I recently gave a user who
had two different machines to use for comparison.
<excerpt>
What do you see if you enter this in an IE Address bar on each?
javascript
:navigator.userAgent
(the property name is case sensitive; so notice that uppercase A.)
However, what is more important about the User-Agent string
is whether it reaches its destination. Some network security products
may modify it; so it is also useful to compare what a remote site claims
to actually see, with what the above IE window showed you.
Steve Gibson's ShieldsUP! site has one such remote service.
<
http://grc.com/default.htm >
(Choose Browser Headers once you allow it to Proceed.)
Another site which you could use for comparing browser functionality is:
<
http://www.gemal.dk/browserspy/ >
Post back your detailed observations if you need more help.
HTH
Robert Aldwinckle
---
</excerpt>