Ill keep this short and simple. I need to find out the steps that I would have to take in order to administer IIS on a windows box using Ruby. The main thing I am trying to achieve is setting an existing websites home directory to a different folder.
A:
I am not a ruby user, so I am not sure of its power. The basics are that IIS provides a lot of interfaces for administration,
- ADSI,
- WMI,
- Native interface via a few C headers or COM
- .NET API (provided in IIS 7)
So if ruby can be used to manipulate those interfaces, you can achieve your goal of administration.
http://learn.iis.net/page.aspx/173/overview-of-mwa--mwm-for-iis-7/
Lex Li
2009-06-18 05:52:03
The ADSI documentation claims that it can be used with a list of "language[s] that support automation" including Perl. I believe that this provides hope for Ruby.
statenjason
2009-06-18 06:01:06