如何在右鍵單擊上下文選單中以管理員身份執行命令?

如何在右鍵單擊上下文選單中以管理員身份執行命令?

如何在右鍵單擊上下文選單中以管理員身份執行命令?這段程式碼工作正常,但以普通用戶身份運行:-( 誰能建議如何修復它?謝謝。

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\Background\shell\Group A]
"SubCommands"=""

[HKEY_CLASSES_ROOT\Directory\Background\shell\Group A\shell]

[HKEY_CLASSES_ROOT\Directory\Background\shell\Group A\shell\Group B]
"SubCommands"=""

[HKEY_CLASSES_ROOT\Directory\Background\shell\Group A\shell\Group B\shell]

[HKEY_CLASSES_ROOT\Directory\Background\shell\Group A\shell\Group B\shell\Group C]
"SubCommands"=""

[HKEY_CLASSES_ROOT\Directory\Background\shell\Group A\shell\Group B\shell\Group C\shell]

[HKEY_CLASSES_ROOT\Directory\Background\shell\Group A\shell\Group B\shell\Group C\shell\Command A]

[HKEY_CLASSES_ROOT\Directory\Background\shell\Group A\shell\Group B\shell\Group C\shell\Command A\command]
@="cmd"

[HKEY_CLASSES_ROOT\Directory\Background\shell\Group A\shell\Group B\shell\Group C\shell\Command B]

[HKEY_CLASSES_ROOT\Directory\Background\shell\Group A\shell\Group B\shell\Group C\shell\Command B\command]
@="cmd"

[HKEY_CLASSES_ROOT\Directory\Background\shell\Group A\shell\Group B\shell\Group D]
"SubCommands"=""

[HKEY_CLASSES_ROOT\Directory\Background\shell\Group A\shell\Group B\shell\Group D\shell]

[HKEY_CLASSES_ROOT\Directory\Background\shell\Group A\shell\Group B\shell\Group D\shell\Command C]

[HKEY_CLASSES_ROOT\Directory\Background\shell\Group A\shell\Group B\shell\Group D\shell\Command C\command]
@="cmd"

[HKEY_CLASSES_ROOT\Directory\Background\shell\Group A\shell\Group B\shell\Group D\shell\Command D]

[HKEY_CLASSES_ROOT\Directory\Background\shell\Group A\shell\Group B\shell\Group D\shell\Command D\command]
@="cmd"

答案1

這是正常工作的

[HKEY_CLASSES_ROOT\directory\Background\shell\runas]
@="Test"

[HKEY_CLASSES_ROOT\directory\Background\shell\runas\command]
@="cmd.exe"

這行不通,為什麼?

[HKEY_CLASSES_ROOT\directory\Background\shell\Demo]

[HKEY_CLASSES_ROOT\directory\Background\shell\Demo\shell]

[HKEY_CLASSES_ROOT\directory\Background\shell\Demo\shell\runas]
@="Test"

[HKEY_CLASSES_ROOT\directory\Background\shell\Demo\shell\runas\command]
@="cmd.exe"

相關內容