如何在 IIS7 中创建 IisManagerAuth FTP 用户帐户?
我想使用 IisManagerAuth 创建 ftp 用户帐户
我不想使用 Windows 用户帐户创建。 为此我必须在 iis 中进行哪些设置?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是说以编程方式吗?您应该使用 Microsoft.Web.Management.dll 并使用: Microsoft.Web.Management.Server.ManagementAuthentication.CreateUser(用户名, 密码)方法
要添加站点的权限,您可以使用ManagementAuthorization.Grant( ) 方法
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