Tag: 访问权限

如何解决“Microsoft Visual Studio(VS)”错误“无法连接到已configuration的开发Web服务器”

问题 如果您从“ Microsoft Visual Studio(VS) ”开始使用“ Microsoft Internet信息服务快速(IIS) ”,则可能会在运行“生成此错误消息” Unable to connect to the configured development Web server 。 Failed to register URL "http://{ip_addr}:{port}/" for site "{project_name}" application "/". Error description: Access is denied. (0x80070005) 这是什么样的权利?

使用C#.NET将“Everyone”权限添加到文件夹

我已经使用下面的代码来允许每个人访问一个文件夹: System.Security.AccessControl.DirectorySecurity sec = System.IO.Directory.GetAccessControl(directory, AccessControlSections.All); FileSystemAccessRule accRule = new FileSystemAccessRule("Everyone", FileSystemRights.Modify, AccessControlType.Allow); sec.AddAccessRule(accRule); // setACL sec.ResetAccessRule(accRule); 现在,Everyone用户被添加到文件夹,但没有分配任何权限。 所有读取,写入,执行等checkbox不被检查。