• 在win7/8/10鼠标右键添加“管理员取得所有权”


    Windows Registry Editor Version 5.00

    [HKEY_CLASSES_ROOT*ShellTakeAuthority]
    "icon"=""C:\windows\system32\SHELL32.dll,160""
    @="管理员取得所有权"
    "NoWorkingDirectory"=""

    [HKEY_CLASSES_ROOT*ShellTakeAuthorityCommand]
    @="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_ROOTexefileshellTakeAuthority]
    "icon"=""C:\windows\system32\SHELL32.dll,160""
    @="管理员取得所有权"

    [HKEY_CLASSES_ROOTexefileshellTakeAuthorityCommand]
    @="cmd.exe /c takeown /f "%1" && icacls "%1" /grant administrators:F"

    [HKEY_CLASSES_ROOTDirectoryshell unas]
    "icon"=""C:\windows\system32\SHELL32.dll,160""
    "NoWorkingDirectory"=""
    @="管理员取得所有权"

    [HKEY_CLASSES_ROOTDirectoryshell unasCommand]
    @="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 unas]
    @="管理员取得所有权"
    "NoWorkingDirectory"=""
    "icon"="C:\Windows\system32\SHELL32.dll,170"

    [HKEY_CLASSES_ROOT*shell unascommand]
    @="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_ROOTexefileshell unas2]
    @="管理员取得所有权"
    "NoWorkingDirectory"=""
    "icon"="C:\Windows\system32\SHELL32.dll,170"

    [HKEY_CLASSES_ROOTexefileshell unas2command]
    @="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_ROOTDirectoryshell unas]
    @="管理员取得所有权"
    "NoWorkingDirectory"=""
    "icon"="C:\Windows\system32\SHELL32.dll,170"

    [HKEY_CLASSES_ROOTDirectoryshell unascommand]
    @="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"

  • 相关阅读:
    Linux客户/服务器程序设计范式——阿帕奇服务器(多进程)
    Linux客户/服务器程序设计范式2——并发服务器(进程池)
    封装readn
    C++学习之路: 函数适配器
    C++学习之路: 智能指针入门
    C++学习之路: 单例模板
    C++学习之路: 左值&右值 的讨论 和 ”move“ 值传递方式
    C++学习之路: 特殊操作符->的重载
    C++学习之路: 模板函数
    C++学习之路: 时间戳 封装成类
  • 原文地址:https://www.cnblogs.com/mahocon/p/5212717.html
Copyright © 2020-2023  润新知