View Full Version : Checking for IIS
coffeeworm
02-04-2005, 06:09 PM
While my app installing, how to check if IIS(Internet Infomation Server) is installed on users computer(Windows 2000).
Thanks.
tealmad
02-04-2005, 11:39 PM
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. :D
nabis
10-17-2005, 08:04 AM
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
Manimaran
06-30-2006, 05:27 AM
I think there is no method like Service.query in auto play script please check it and reply.
Powered by vBulletin™ Version 4.0.6 Copyright © 2013 vBulletin Solutions, Inc. All rights reserved.