在使用win系统时总是有很多的文件或者文件夹删除不掉,提示需要管理员权限才可以删除,但又不知道如何操作才能删除,这时我们就需要在右键菜单中添加上“取得管理员权限”了,直接在文件或文件夹上右击,然后选择“取得管理员权限”后就可以正常删除了。你可以直接下载已经编辑好的reg文件,也可以自行复制下面的文本自己创建reg文件。
取得管理员权限
将以下内容复杂到记事本,并另存为后缀名为“*.reg”,然后双击运行此文件即可添加“取得管理员权限”。
Windows Registry Editor Version 5.00
;取得文件修改权限
[HKEY_CLASSES_ROOT\*\shell\runas]
@=”管理员权限”
“Icon”=”C:\\Windows\\System32\\imageres.dll,102”
“NoWorkingDirectory”=””
[HKEY_CLASSES_ROOT\*\shell\runas\command]
@=”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_ROOT\exefile\shell\runas2]
@=”管理员权限”
“Icon”=”C:\\Windows\\System32\\imageres.dll,102”
“NoWorkingDirectory”=””
[HKEY_CLASSES_ROOT\exefile\shell\runas2\command]
@=”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_ROOT\Directory\shell\runas]
@=”管理员权限”
“Icon”=”C:\\Windows\\System32\\imageres.dll,102”
“NoWorkingDirectory”=””
[HKEY_CLASSES_ROOT\Directory\shell\runas\command]
@=”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\*\shell\runas-] @=”恢复原始权限” “Icon”=”C:\\Windows\\System32\\imageres.dll,101” “NoWorkingDirectory”=”” ; && takeown /f \”%1\” [HKEY_CLASSES_ROOT\*\shell\runas-\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_ROOT\exefile\shell\runas2-] @=”恢复原始权限” “Icon”=”C:\\Windows\\System32\\imageres.dll,101” “NoWorkingDirectory”=””
[HKEY_CLASSES_ROOT\exefile\shell\runas2-\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_ROOT\Directory\shell\runas-] @=”恢复原始权限” “Icon”=”C:\\Windows\\System32\\imageres.dll,101” “NoWorkingDirectory”=””
[HKEY_CLASSES_ROOT\Directory\shell\runas-\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%%\””
暂无评论
要发表评论,您必须先 登录