Link to home
Start Free TrialLog in
Avatar of tooki
tooki

asked on

IIS version (URgent Please!!)

I have IIS installed in my Windows2003 server. How can I find out what version of IIS is installed on it?
The directory is:
C:\Inetpub\wwwroot\

thanks.
-tooki
ASKER CERTIFIED SOLUTION
Avatar of jss1199
jss1199

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
...and if you MUST see it in writing, paste this into an ASP page:

Response.Write Request.ServerVariables ("SERVER_SOFTWARE")

Best of luck,
harperse
Or for any version of IIS check the following keys in the registry:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W3SVC\Parameters\MajorVersion
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W3SVC\Parameters\MinorVersion

Put a . between MajorVersion and MinorVersion and you have you version number.....  :-)

Dave Dietz