Ok, I was reading this article on how to use AppCmd via the command line
How to Configure WebDAV Settings Using AppCmd
I actually need to do this via scripting interface if possible.
For instance I am creating a virtual directory via code like this:
Dim iisManager As New Microsoft.Web.Administration.ServerManager()
Dim app As Microsoft.Web.Administration.Application = iisManager.Sites("Default Web Site").Applications("/")
app.VirtualDirectories.Add("/Users/" & "keith" , "C:\keith")
iisManager.CommitChanges()
The code above creates my virtual directory for my webdav site "Default Web Site".
I now need to do something similar for creating the Authoring Rules via code if possible. The link above shows how to do this via command line but I want to do it without having to shell a command line process.
Is this possible?