IIS WebService
I'm trying to convert some VBScript code to C++. Basicaly, the code is checking if I have an IIS WebService installed on a computer. The code is as follows:
Set ObjWebSvc = GetObject("IIS://localhost/w3svc")
Set oFtpService = GetObject("IIS://localhost/MSFTPSVC")
If not IsObject(ObjWebSvc) Then 'Check for basic IIS WebService
Me.Property("DLGValidateIISInstalled") = "0"
MsgBox Me.Property("Idea_Err_IISMissing"),, MsgTitle
Elseif......

