Reputation: 417
i want to creatre an ftp user acccount using IisManagerAuth
i dont want to create using windows user account.
what all seetings i have to make in iis for this?
Upvotes: 1
Views: 1252
Reputation: 13591
Do you mean programmatically? You should use Microsoft.Web.Management.dll for that and use: Microsoft.Web.Management.Server.ManagementAuthentication.CreateUser(userName, password) method
And to add the permissions for a site, you can use ManagementAuthorization.Grant( ) method
Upvotes: 2