How can I find out which version of Microsoft Internet Information Services (IIS) my server is running?

8,325

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

Share:
8,325

Related videos on Youtube

wahle509
Author by

wahle509

Programmer and internet guru.

Updated on September 17, 2022

Comments

  • wahle509
    wahle509 over 1 year

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

  • Admin
    Admin over 11 years
    This DLL is most likely in C:\Windows\system32\inetsrv\
  • Admin
    Admin over 8 years
    There is no asp.dll in C:\Windows\System32\inetsrv (server 2012 here).
  • Admin
    Admin about 6 years
    Look like from IIS 7.0 onward there is no ASP.DLL.