Windows7: Alterando o atalho do Backshift no Explorer de volta para cima?

5

No XP, usei o backshift para ir uma pasta para cima. No Win7 eles mudaram isso para Alt + ArrowUp e backshift significa agora voltar no histórico de pastas.

Existe alguma maneira de usar o bom e velho backshift para subir? Eu não preciso da funcionalidade de volta ..

    
por sewo 15.12.2011 / 18:46

1 resposta

6

Aqui está um artigo sobre o How-To Geek que deve ajudar! Fazer o backspace no Windows 7 ou Vista Explorer subir como o XP fez

The Awesome AutoHotkey Fix

Now that we know the shortcut key that actually works in Windows 7, we can use a small script to make it work the way we really want it to. With AutoHotkey installed, create a new script with New –> AutoHotkey Script, and then paste in the following:

#IfWinActive, ahk_class CabinetWClass Backspace::    ControlGet renamestatus,Visible,,Edit1,A    ControlGetFocus focussed, A   
if(renamestatus!=1&&(focussed=”DirectUIHWND3″||focussed=SysTreeView321))
{
    SendInput {Alt Down}{Up}{Alt Up}   }else{
      Send {Backspace}   }
#IfWinActive

Compiled version (exe file)
http://www.softsea.com/review/HTGBack-Backspace.html

    
por 15.12.2011 / 19:27