How to detect IIS version using C#?
Update: I meant from a winapp (actually the scenario is developing a custom installer that wants to check the version of the installed IIS to call the appropriate api's)
|
1
|
|||||
|
|
|
You can get this information from the
etc. If you're using ASP.NET, you can get this string via
EDIT: It seems that you will have to query the registry to get this information. Take a look at this page to see how. |
|||
|
|
|
This is how i do it.
|
||
|
|
|
|
U can find it in the registry. Up to IIS version 6 you can find it here: HKLM\SYSTEM\CurrentControlSet\Services\W3SVC\Parameters Since version 7 here: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\InetStp MajorVersion MinorVersion |
||
|
|
|
|
Use System.Web.HttpRequest.ServerVariables("SERVER_SOFTWARE"). The return value is a string in the format name/version. |
||
|
|
|
|
Found the answer here: link text The fileVersion method dosesn't work on Windows 2008, the inetserv exe is somewhere else I guess.
I tested it, it works perfectly on Windows XP, 7 and 2008 |
||
|
|
|
|
Check the X-Powered-By header: http://www.http-stats.com/X-Powered-By There you can find the possibly values... |
||
|
|
|
|
It is usually presented in http header of response, as i know. |
||
|
|
|
|
I would just check the version of the OS: xp has IIS 5.1, Server 2003 has IIS 6 and vista/Server 2008 has IIS 7. |
||
|
|