Adicionando o comando Powershell para clicar com o botão direito do mouse no menu e em uma pasta

1

Existem algumas soluções online, mas a maioria delas apenas adiciona o comando quando você clica com o botão direito do mouse na pasta. Eu encontrei uma solução (que funcionam ambos) para Run As Administrator aqui . Mas funciona apenas para acesso de administrador.

    
por SdidS 13.01.2014 / 13:47

2 respostas

4

Aqui está a solução:

Isso adiciona o powershell à janela de abertura (ou seja, ao clicar com o botão direito do mouse em um arquivo)

[HKEY_CLASSES_ROOT\Directory\shell]
    1. Create a key such as "powershell" or whatever you want without space
    2. Set the default value of the key as your desired text, e.g.:"PS here dear"
    3. Create a nested key inside the "powershell" key as "command"
    4. Edit the command value by this:
        C:\Windows\system32\WindowsPowerShell\v1.0\powershell.exe -NoExit -NoProfile -Command Set-Location -LiteralPath '%L'

Isso adiciona o powershell ao menu do botão direito dentro da pasta

[HKEY_CLASSES_ROOT\Directory\Background\shell]
    1. Create a key such as "powershell" or whatever you want withuout space
    2. Set the default value of the key as your desired text e.g "PS here dear"
    3. Create a nested key inside the "powershell" key as "command"
    4. Edit the command value by this:
        C:\Windows\system32\WindowsPowerShell\v1.0\powershell.exe -NoExit -NoProfile -Command Set-Location -LiteralPath '%V'

Observe as diferenças de% V e% L no comando

    
por 14.01.2014 / 23:14
1

Esta é a solução do SdidS como um arquivo regedit:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\Background\shell\powershell_here]
@="PowerShell Here"

[HKEY_CLASSES_ROOT\Directory\Background\shell\powershell_here\command]
@="C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\powershell.exe -NoExit -NoProfile -Command Set-Location -LiteralPath '%V'"
    
por 27.06.2018 / 12:11