How to get super administrator rights for Windows 8 system

  

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.

Whether you use Win8 or Win7, when you open some folders on the C drive, you will often encounter inaccessible situations, so that you can't delete the files that have been confirmed to be useless. 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 is there too little authority? 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.

Win8 Get Super Administrator Permission


The method is very simple:

1. Create a new Notepad and copy the following code into it, Notepad The name doesn't matter, remember to change the extension to .reg. 2. After the build, double-click the reg file (registry file) to import the registry, there will be a prompt for you to choose before importing, the point is OK. 3. After importing, right click on the folder you want to get permission to, select the administrator permission in the right mouse button menu. 4. 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.

1. Obtain administrator rights


Copy code
The code is as follows: Windows Registry Editor Version 5.00; Get file modification permission [HKEY_CLASSES_ROOT\\*\\shell\ unas ] @="Administrator 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] @ ="Administrator rights" "Icon"="C:\\\\Windows\\\\System32\\\\imageres.dll,102" "NoWorkingDirectory"="" [H KEY_CLASSES_ROOT\\Directory\\shell\ unas\\command] @="cmd.exe /c takeown /f \\"%1\\" /r /dy && icacls \\"%1\\" /grant administrators:F /t" "IsolatedCommand"="cmd.exe /c takeown /f \\"%1\\" /r /dy && icacls \\"%1\\" /grant administrators:F /t"

2 Restore original permissions:


Copy code
The code is as follows: 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"="" ; && 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"="" [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%%\\"" [HKEY_CLASSES_ROOT\\Directory\\shell\ unas-] @="Restore original permissions" "Icon"="C:\\\\Windows\\\\System32\\ \\imageres.dll,101" "NoWorkingDirectory"="" [HKEY_CLASSES_ROOT\\Directory\\shell\ unas-\\command] @="cmd.exe /c takeown /f \\"%1\\" /r /dy && Icacls \\"%1\\" /reset && cacls \\"%1\\" /e /r \\"%%USERNAME%%\\"" "IsolatedCommand"="cmd.exe /c takeown /f \\"% 1\\" /r /dy && icacls \\"%1\\" /reset && cacls \\"%1\\" /e /r \\"%%USERNAME%%\\""

Copyright © Windows knowledge All Rights Reserved