With win8 friends to open some of the system permissions, will always encounter no access to the situation, or in the deletion of some files, also because the lack of permissions, and lead to operation, that is how to obtain the highest level of WIN8? I'll give you two strokes.
How WIN8 users get the highest privileges
First trick
We go back to the classic desktop, right click on the computer---management---Local Users and Groups---users, then we can see the figure of the administrator, and then right click on the administrator attributes, the account has disabled the hook to remove the line.
How WIN8 users get the highest privileges
At this time we combine key Crtl+alt+del, choose to switch User login with Administrator account on the line.
How WIN8 users get the highest privileges
Second trick
Import the registry, create a new Notepad, copy the code below, and then change the file suffix name to. reg, and double-click to run it.
Get Administrator privileges
Windows Registry Editor Version 5.00
; Get File Modification permission
[Hkey_classes_root*shellrunas]
@= "Administrator Rights"
"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]
@= "Administrator Rights"
"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]
@= "Administrator Rights"
"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"
2, restore the original permissions:
Windows Registry Editor Version 5.00
; Restore Original permissions
[hkey_classes_root*shellrunas-]
@= "Restore Original Permissions"
"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-]
@= "Restore Original Permissions"
"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-]
@= "Restore Original Permissions"
"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 '%%usernam e%% ""
After you double-click the two files, you will automatically inject the functions we need into the registration table, and then the right menu will appear an administrator and a restore the original permissions of the options, to what files to perform operations, must not be a small part of the big mouth.
How WIN8 users get the highest privileges