Windows – How to find out which version of Microsoft Internet Information Services (IIS) the server is running

iisversionwindowswindows-server-2003

My server is running with Windows Server 2003 SP2. How can I check for which version of IIS it is running?

Best Answer

You run a simple asp script on your IIS server:

response.write(Request.ServerVariables("SERVER_SOFTWARE"))

Or look for ASP.DLL (under system32, I believe) right click it, choose properties and check the file version.

However on Windows Server 2003, you are almost certainly running IIS 6.0

Related Question