Roman Prykhodchenko
Roman Prykhodchenko

Reputation: 13315

Managing IIS through Delphi code

I'm developing an Inno Setup installer and I need to manage an IIS server from my delphi code. I've 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/remove websites. So my question is how can I do that?

Upvotes: 6

Views: 780

Answers (1)

Stijn Sanders
Stijn Sanders

Reputation: 36840

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

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

Upvotes: 2

Related Questions