How to determine installed IIS version - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T21:43:36Zhttp://stackoverflow.com/feeds/question/435050http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/435050/how-to-determine-installed-iis-version2How to determine installed IIS versionnorheim.se2009-01-12T10:38:46Z2009-01-13T07:52:16Z
<p>What would the preferred way of programmatically determining which the currently installed version of Microsoft Internet Information Services (IIS) is?</p>
<p>I know that it can be found by looking at the MajorVersion key in HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W3SVC\Parameters. </p>
<p>Would this be the <em>recommended</em> way of doing it, or is there any safer or more beautiful method available to a .NET developer?</p>
http://stackoverflow.com/questions/435050/how-to-determine-installed-iis-version/435059#4350591Answer by Spencer Ruport for How to determine installed IIS versionSpencer Ruport2009-01-12T10:44:11Z2009-01-13T03:39:38Z<p>You could build a WebRequest and send it to port 80 on a loopback IP address and get the Server HTTP header.</p>
<pre><code>HttpWebRequest myHttpWebRequest = (HttpWebRequest)WebRequest.Create("http://127.0.0.1/");
HttpWebResponse myHttpWebResponse = null;
try
{
myHttpWebResponse = (HttpWebResponse)myHttpWebRequest.GetResponse();
}
catch (WebException ex)
{
myHttpWebResponse = (HttpWebResponse)ex.Response;
}
string WebServer = myHttpWebResponse.Headers["Server"];
myHttpWebResponse.Close();
</code></pre>
<p>Not sure if that's a better way of doing it but it's certainly another option.</p>
http://stackoverflow.com/questions/435050/how-to-determine-installed-iis-version/438250#4382501Answer by Shiva for How to determine installed IIS versionShiva2009-01-13T07:52:16Z2009-01-13T07:52:16Z<p><strong>To identify the version from outside the IIS process, one possibility is like below...</strong></p>
<pre><code>string w3wpPath = Path.Combine(
Environment.GetFolderPath(Environment.SpecialFolder.System),
@"inetsrv\w3wp.exe");
FileVersionInfo versionInfo = FileVersionInfo.GetVersionInfo(w3wpPath);
Console.WriteLine(versionInfo.FileMajorPart);
</code></pre>
<p><strong>To identify it from within the worker process at runtime...</strong></p>
<pre><code>using (Process process = Process.GetCurrentProcess())
{
using (ProcessModule mainModule = process.MainModule)
{
// main module would be w3wp
int version = mainModule.FileVersionInfo.FileMajorPart
}
}
</code></pre>