Win8 method to obtain super administrator rights

  
        

Using Win8 to find the system folder is often prompted: can't access ……, denied access. It is because there is no super administrator authority. It is very easy to obtain Win8 super administrator privileges. Importing a registry file can be realized, and the operation is simple.


Regardless of whether you use Win8 or Win7, when you open some folders of the C drive, you will often encounter inaccessible situations, so that you want to delete the files that have been confirmed to be useless. No. Win7 is very easy to do, all kinds of tools can be added in the right-click menu to get the admin rights button. Now I mainly introduce how to add the option of obtaining administrator rights for the right mouse button menu under Win8.


Some students will ask, my account is already an administrator, why are there too few permissions? To put it simply, there is a privilege on top of the Windows Administrators privilege. Specifically, I can't remember now, it is the top administrator.


Method /Steps

  1. The method is very simple:

    Create a new Notepad and copy the following code into the save, note This name does not matter, remember to change the extension to .reg.

    After you have created it, double-click the reg file (registry file) to import the registry. You will be prompted to choose before importing. The point is OK.

    After importing, right click on the folder you want to get permission to, select the administrator permission in the right mouse button menu.

    For security reasons, after a file operation is completed, it should be restored to the default permissions. In this case, select Restore original permissions in the right-click menu.



  2. 1, to obtain administrator privileges


    Windows Registry Editor Version 5.00


    ;Get file modification permission

    [HKEY_CLASSES_ROOT\\*\\shell\ unas]

    @="Administrative rights"

    "Icon"=" ;C:\\\\Windows\\\\System32\\\\imageres.dll,102"

    "NoWorkingDirectory"=""


    [HKEY_CLASSES_ROOT\\*\\shell \ unas\\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\ unas2]

    @="Administrative Rights"

    "Icon"="C:\\\\Windows\\\\System32\\\\imageres.dll,102"

    "NoWorkingDirectory"=""


    [HKEY_CLASSES_ROOT\\exefile\\shell\ unas2\\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\ unas]

    @="Administrative Rights"

    "Icon"="C:\\\\Windows\\\\System32\\\\imageres.dll,102"

    "NoWorkingDirectory"=""


    [HKEY_CLASSES_ROOT\\Directory\\shell\ unas\\command]

    @="cmd.exe /c takeown /f \\"%1\\" /r /dy && icacls \\" ;%1\\" /gran t administrators:F /t"

    "IsolatedCommand"="cmd.exe /c takeown /f \\"%1\\" /r /dy && icacls \\"%1 \\ " /grant administrators: F /t "



  3. 2, restore the original permissions:


    Windows Registry Editor Version 5.00



    ;Restore original permissions

    [HKEY_CLASSES_ROOT\\*\\shell\ unas-]

    @=" Restore original permissions "

    "Icon"="C:\\\\Windows\\\\System32\\\\imageres.dll,101"

    "NoWorkingDirectory"=""< Br>

    ; && takeown /f \\"%1\\"

    [HKEY_CLASSES_ROOT\\*\\shell\ unas-\\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\ unas2-]

    @=" Restore original permissions "

    "Icon"="C:\\\\Windows\\\\System32\\\\imageres.dll,101"

    "NoWorkingDirectory"=""< Br>


    [HKEY_CLASSES_ROOT\\exefile\\shell\ unas2-\\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%%\\""



    [HK EY_CLASSES_ROOT\\Directory\\shell\ unas-]

    @="Restore original permissions"

    "Icon"="C:\\\\Windows\\\\System32\\\\imageres.dll ,101"

    "NoWorkingDirectory"=""

Copyright © Windows knowledge All Rights Reserved