Managing IIS with Delphi Code

I am developing the Inno Setup installer and I need to manage the IIS server from my delphi code. I googled how to add / remove ISAPI filters and how to create a virtual folder. However, I still need to be able to add / remove / list ISAPI extensions and create / delete websites. So my question is: how can I do this?

+6
iis delphi inno-setup
source share
1 answer

IIS admin has a scripting interface, you should be able to call from Delphi or InnoSetup, or from a combination of both:

http://msdn.microsoft.com/en-us/library/ms526050(VS.90).aspx

+2
source share

All Articles