Checking for IIS

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • coffeeworm
    Indigo Rose Customer
    • Jul 2002
    • 68

    Checking for IIS

    While my app installing, how to check if IIS(Internet Infomation Server) is installed on users computer(Windows 2000).
    Thanks.
  • tealmad
    Indigo Rose Customer
    • Feb 2003
    • 29

    #2
    if you know the executable file name for the application, you could search for that directory then look for the .exe file. Just a thought.
    Gregg Payne

    Comment

    • nabis
      Indigo Rose Customer
      • Oct 2005
      • 1

      #3
      IIS Checking..

      Originally posted by coffeeworm
      While my app installing, how to check if IIS(Internet Infomation Server) is installed on users computer(Windows 2000).
      Thanks.
      below iis checking script.

      chkIIS = Service.Query("World Wide Web Publishing Service", "");
      if (chkIIS == 0) then //IIS service is not found.
      Dialog.Message("Iis not found!", "Iis isn't install.", MB_OK);
      end

      Comment

      • Manimaran
        Forum Member
        • Jun 2006
        • 6

        #4
        Script for checking IIS

        I think there is no method like Service.query in auto play script please check it and reply.

        Comment

        Working...
        X