Mais de um 'Open xxxxx here as Administrator'

1

Eu quero a opção para abrir uma janela de Comando ou uma janela do Powershell como Administrador nos menus de contexto da unidade e do diretório no Windows.

Eu posso ter qualquer criando e preenchendo as chaves de registro especiais 'runas' mostradas abaixo, mas existe uma maneira que eu possa ter ambos listado no menu de contexto e tem ambos executado como Administrador?

[HKEY_CLASSES_ROOT\Drive\shell\runas]
...
[HKEY_CLASSES_ROOT\Drive\shell\runas\command]
...
[HKEY_CLASSES_ROOT\Directory\shell\runas]
...
[HKEY_CLASSES_ROOT\Directory\shell\runas\command]
...
[HKEY_CLASSES_ROOT\Directory\Background\shell\runas]
...
[HKEY_CLASSES_ROOT\Directory\Background\shell\runas\command]
...
    
por FatuousJeffrey 17.09.2015 / 18:26

1 resposta

6

Próximo registro hack funciona para diretórios no Windows 8.1:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\shell\runas]
"HasLUAShield"=""
@="CMD here as administrator"

[HKEY_CLASSES_ROOT\Directory\shell\runas\command]
@="cmd.exe /S /K pushd \"%V\""
"DelegateExecute"=""

[HKEY_CLASSES_ROOT\Directory\shell\runasPowerShell]
"HasLUAShield"=""
@="PowerShell here as administrator"

[HKEY_CLASSES_ROOT\Directory\shell\runasPowerShell\command]
@="Powershell Start-Process PowerShell -verb runas -ArgumentList '-noexit', 'Push-Location -literalPath ''\"%V\"'''"
"DelegateExecute"=""

Você também pode adicionar subchaves runas e runasPowerShell para unidades com [HKEY_CLASSES_ROOT\Drive\shell] .

    
por 18.09.2015 / 09:48