Is there a way to enable the ASP.NET Web Service Extension in IIS6 via C#? I'm trying to simplify a website setup program for people who haven't used IIS before.
|
|
You could call out to WMI easily enough (System.Management namespace, IIRC) and I believe you can set it from there. However, it may well be much simpler to set it manually, you can't do it from within an ASP.NET site since your server won't be able to run it until it is set... Principles of doing something similar may be found here |
||
|
|
|
Looking around all the examples of this are written in vbscript. So I cheated and came up with this function:
|
||
|
|
|
|
I believe you can also run the following command line:
And this will recursively enable the AND.NET framework v2.0.50727 for all configured websites. |
||
|
|
