The ADSI container object Delete method deletes an object from a container.
Object.Delete KeyType, Name
When the contained object to be deleted is part of an application, the Delete method will remove the application definition before deleting the object. See the AppDelete method of the IIsWebVirtualDir and IIsWebDirectory objects.
<% Dim WebServiceObj ' Get the web service object, which contains servers Set WebServiceObj = GetObject("IIS://LocalHost/W3SVC") ' Delete the fourth server WebServiceObj.Delete "IIsWebServer", "4" %>
GetObject, Create, CopyHere, MoveHere