码迷,mamicode.com
首页 > Windows程序 > 详细

Win8取得超级管理员权限的方法

时间:2014-11-22 14:44:47      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:取得win8超级管理员权限   win8   管理   

  1. 方法很简单:

    新建一个记事本将下面的代码Copy进去保存,记事本名字无所谓,记住将扩展名改为.reg就行了。

    建好之后,双击这个reg文件(注册表文件)导入注册表,导入前会有提示让你选择,点是就行了。

    导入进去之后,右击你要取得权限的文件夹,鼠标右键菜单中选择选择管理员权限就行了。

    为了安全考虑,对一个文件操作完成之后,应当恢复成默认权限,此时在右键菜单中选择恢复原始权限就行了。


    bubuko.com,布布扣
  2. 1、取得管理员权限


    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"


  3. 2、恢复原始权限:


    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%%\""


Win8取得超级管理员权限的方法

标签:取得win8超级管理员权限   win8   管理   

原文地址:http://blog.csdn.net/u010736393/article/details/41381121

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!