+1  A: 

Adding Web Service Extension Files Using Iisext.vbs should be pretty much what you're looking for (the linked article describes how to add a new filter: if you just need to enable it, scroll down and see the list of linked articles for exact instructions on how to achieve that)

mdb
you think this would work on a XP machine as well?
Assaf Lavie
Yes, it should: I don't have an XP box handy to check, but as long as the IIS WMI provider is available, iisext.vbs should work
mdb
A: 

Set iisinfo = GetObject("IIS://localhost/W3SVC/Info") If CInt(iisinfo.MajorIIsVersionNumber) >= 6 Then Set iisinfo = Nothing Set iis = GetObject("IIS://localhost/W3SVC") iis.EnableWebServiceExtension "ASP" End If

Hemal