Girish K G
Girish K G

Reputation: 417

how to create IisManagerAuth FTP user account in IIS7?

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

Answers (1)

Carlos Aguilar Mares
Carlos Aguilar Mares

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

Related Questions