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.
Asked
Active
Viewed 207 times
1 Answers
0
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
- 60,503
- 9
- 116
- 147
-
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 Jun 18 '09 at 06:01