腾讯视频/爱奇艺/优酷/外卖 充值4折起
使用win8在找开系统文件夹是经常提示:无法访问……,拒绝访问。就是没有超级管理员权限所致,取得win8超级管理员权限很容易,导入一个注册表文件就可以实现,并且操作简单。
不管是使用win8还是win7,在打开c盘的一些文件夹时,经常会遇到无法访问的情况,以致于想删除已经确认没有用的文件时删除不了。win7下很好办,各种工具皆可实现在右键菜单添加取得管理员权限按钮。现在主要介绍win8下如何为鼠标右键菜单添加取得管理员权限选项。
新建一个记事本将下面的代码copy进去保存,记事本名字无所谓,记住将扩展名改为.reg就行了。
建好之后,双击这个reg文件(注册表文件)导入注册表,导入前会有提示让你选择,点是就行了。
导入进去之后,右击你要取得权限的文件夹,鼠标右键菜单中选择选择管理员权限就行了。
为了安全考虑,对一个文件操作完成之后,应当恢复成默认权限,此时在右键菜单中选择恢复原始权限就行了。
取得管理员权限:
windows registry editor version 5.00
;取得文件修改权限
[hkey_classes_root*shellrunas]
@="管理员权限"
"icon"="c:windowssystem32imageres.dll,102"
"noworkingdirectory"=""
[hkey_classes_root*shellrunascommand]
@="cmd.exe /c takeown /f "%1" && icacls "%1" /grant administrators:f"
"isolatedcommand"="cmd.exe /c takeown /f "%1" && icacls "%1" /grant administrators:f"
[hkey_classes_rootexefileshellrunas2]
@="管理员权限"
"icon"="c:windowssystem32imageres.dll,102"
"noworkingdirectory"=""
[hkey_classes_rootexefileshellrunas2command]
@="cmd.exe /c takeown /f "%1" && icacls "%1" /grant administrators:f"
"isolatedcommand"="cmd.exe /c takeown /f "%1" && icacls "%1" /grant administrators:f"
[hkey_classes_rootdirectoryshellrunas]
@="管理员权限"
"icon"="c:windowssystem32imageres.dll,102"
"noworkingdirectory"=""
[hkey_classes_rootdirectoryshellrunascommand]
@="cmd.exe /c takeown /f "%1" /r /d y && icacls "%1" /grant administrators:f /t"
"isolatedcommand"="cmd.exe /c takeown /f "%1" /r /d y && icacls "%1" /grant administrators:f /t"
恢复到原始权限:
windows registry editor version 5.00
;恢复原始权限
[hkey_classes_root*shellrunas-]
@="恢复原始权限"
"icon"="c:windowssystem32imageres.dll,101"
"noworkingdirectory"=""
; && takeown /f "%1"
[hkey_classes_root*shellrunas-command]
@="cmd.exe /c takeown /f "%1" && icacls "%1" /reset && cacls "%1" /e /r "%%username%%""
"isolatedcommand"="cmd.exe /c takeown /f "%1" && icacls "%1" /reset && cacls "%1" /e /r "%%username%%""
[hkey_classes_rootexefileshellrunas2-]
@="恢复原始权限"
"icon"="c:windowssystem32imageres.dll,101"
"noworkingdirectory"=""
[hkey_classes_rootexefileshellrunas2-command]
@="cmd.exe /c takeown /f "%1" && icacls "%1" /reset && cacls "%1" /e /r "%%username%%""
"isolatedcommand"="cmd.exe /c takeown /f "%1" && icacls "%1" /reset && cacls "%1" /e /r "%%username%%""
[hkey_classes_rootdirectoryshellrunas-]
@="恢复原始权限"
"icon"="c:windowssystem32imageres.dll,101"
"noworkingdirectory"=""
[hkey_classes_rootdirectoryshellrunas-command]
@="cmd.exe /c takeown /f "%1" /r /d y && icacls "%1" /reset && cacls "%1" /e /r "%%username%%""
"isolatedcommand"="cmd.exe /c takeown /f "%1" /r /d y && icacls "%1" /reset && cacls "%1" /e /r "%%username%%""
如何删除增加的两个右键菜单,还请大神做个小工具上传,省得一个一个的去注册表删除。