1.如何给文件夹添加everyone用户
everyone用户是指任何用户,如果给这个用户的权限是完全控制,那么连接你你计算机的的所有用户都能对此文件夹操作。
一般情况下这个用户给只读权限。方法:1.打开我的电脑--工具--文件夹选项--查看。
把使用简单文件共享的钩去掉。然后右击你的文件夹,共享,就有权限设置了.2.前提是硬盘使用NTFS格式。
右键文件夹选择安全,把everyone添加进去就好了。3.或者编辑以下代码实现: public void AddEvy() { Hashtable ht = new Hashtable(); ht.Add("Web.config", "F"); ht.Add("map", "D"); ht.Add("pic", "D"); ht.Add("rth/App_Data/SysConfig.xml", "F"); ht.Add("rth/config/Menus.xml", "F"); ht.Add("rth/zwwh/Web.config", "F"); ht.Add("log", "D"); foreach (DictionaryEntry de in ht) { string s = System.Windows.Forms.Application.StartupPath+"\\"+de.Key.ToString(); if (de.Value.ToString() == "F") { if (!File.Exists(s)) { File.Create(s); } } else { if (!Directory.Exists(s)) { Directory.CreateDirectory(s); } } if (de.Value.ToString() == "F") { AddDirectorySecurity("F", s, "Everyone", FileSystemRights.FullControl, AccessControlType.Allow); } else if (de.Value.ToString() == "D") { AddDirectorySecurity("D", s, "Everyone", FileSystemRights.FullControl, AccessControlType.Allow); } } } ///
2.怎么设置windows\temp目录增加everyone用户读写权限
右击这文件夹在安全里面点继续出现后一个窗口点添加
输入EV检查一下就出来了
在下面为他分配权限就可以了
转载请注明出处windows之家 » win10如何添加everyone用户