58 votes

Désactiver ou retarder l'effet Alt+Tab Aero Peek dans Windows 7

Sous Windows 7, appuyez sur Alt + Tab montre l'effet transparent de Windows (Aero). Le changement d'écran est gênant lorsque j'essaie de savoir à quelle fenêtre passer en me basant sur l'aperçu des vignettes (ce qui me suffit la plupart du temps). Existe-t-il un moyen de désactiver l'effet Aero Peek ou de retarder son activation à quelque chose comme 6 secondes ou plus ?

Dans la barre des tâches, l'effet Aero Peek s'affiche à la demande lorsque je passe la souris sur les vignettes. Ce comportement n'est pas un problème et si j'ai le choix, je ne veux pas qu'il soit désactivé.

3voto

It's Leto Points 131

Je sais que c'est un sujet assez ancien, mais je n'ai jamais aimé la fonction Areo Peek lorsque j'utilisais Alt + TAB pour changer de tâche. En outre, je ne refuse pas complètement Areo Peek - par exemple, j'aime jeter un coup d'œil à mon bureau Windows à l'aide de la fonction WIN + Space .

J'ai beaucoup essayé de désactiver Areo Peek juste pour Alt + TAB l'inversion des tâches, mais rien n'a vraiment fonctionné pour moi. Je connais toutes les astuces du registre, par exemple le réglage du délai Aero Peek en millisecondes à une valeur très élevée. Mais cela ne fonctionne pas, du moins pas sur toutes les machines - d'après mon expérience, vous pouvez définir une valeur élevée qui est toujours limitée à 3000 ms en interne (cela fonctionnait peut-être avant le Service Pack pour Windows 7).

J'ai donc décidé de suivre une autre voie et d'essayer de résoudre ce problème via AutoHotkey . Ce script désactive Aero Peek juste pour Alt + TAB et uniquement pour cela, afin que vous puissiez continuer à utiliser les autres fonctions d'Aero Peek.

Le script est testé contre la version d'AutoHotkey "AutoHotkey_L 1.1.00.00" avec Windows 7 Professional 64 bit avec un utilisateur Windows avec des droits d'administrateur - et jusqu'à présent rapporté pour fonctionner sur tous les systèmes dont j'ai eu des retours. Il suffit d'installer AutoHotkey et de configurer le fichier script pour qu'il soit exécuté automatiquement au démarrage de Windows. Il est très léger, n'utilisant que très peu de ressources et de temps CPU.

Je le poste ici en espérant que cela aidera toute personne ayant ce problème. Veuillez télécharger le script à partir de :

http://dl.dropbox.com/u/15020526/Privat/Software/GA/AutoHotkey/DisableAeroPeekForAltTab_1.0.zip

; ==============================================================
;
; AVOID "AERO PEEK" FOR ALT-TAB - AUTOHOTKEY-SCRIPT
; 
; Disables Windows 7 Areo Peek feature for ALT-TAB, and only 
; for this, so that other Areo Peek features (like WIN+SPACE) 
; can still be used.
;
; This script can be run with AutoHotkey (http://www.autohotkey.com/),
; tested against Version AutoHotkey_L 1.1.00.00 with Windows 7 
; Professional 64 bit with a Windows user with admin rights.
;
; @author   Timo Rumland <timo.rumland${at}the-cr.de>, 19.09.2011
; @version  1.0
;
; --------------------------------------------------------------
;
; LICENSE
; 
; This software is distributed under the FreeBSD License.
;
; Copyright (c) 2011 Timo Rumland <timo.rumland${at}the-cr.de>. All rights reserved.
; 
; Redistribution and use in source and binary forms, with or without modification, are
; permitted provided that the following conditions are met:
; 
;    1. Redistributions of source code must retain the above copyright notice, this list of
;       conditions and the following disclaimer.
; 
;    2. Redistributions in binary form must reproduce the above copyright notice, this list
;       of conditions and the following disclaimer in the documentation and/or other materials
;       provided with the distribution.
; 
; THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ''AS IS'' AND ANY EXPRESS OR IMPLIED
; WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
; FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> OR
; CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
; SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
; ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
; ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
; 
; The views and conclusions contained in the software and documentation are those of the
; authors and should not be interpreted as representing official policies, either expressed
; or implied, of <copyright holder>.
;
; ==============================================================

#NoEnv
#SingleInstance     force
SendMode            Input 
SetWorkingDir       %A_ScriptDir%
SetTitleMatchMode   2       ; 2: A window's title can contain WinTitle anywhere inside it to be a match. 

; =======
; Global
; =======

    visualEffectsRegistryKey                := Object()
    visualEffectsRegistryKey.valueType      := "REG_DWORD"
    visualEffectsRegistryKey.rootKey        := "HKEY_CURRENT_USER"
    visualEffectsRegistryKey.subKey         := "Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects"
    visualEffectsRegistryKey.valueName      := "VisualFXSetting"
    visualEffectsRegistryKey.value          := 3    ; Manual Visual FX Settings

    enableAeroPeekRegistryKey               := Object()
    enableAeroPeekRegistryKey.valueType     := "REG_DWORD"
    enableAeroPeekRegistryKey.rootKey       := "HKEY_CURRENT_USER"
    enableAeroPeekRegistryKey.subKey        := "Software\Microsoft\Windows\DWM"
    enableAeroPeekRegistryKey.valueName     := "EnableAeroPeek"
    enableAeroPeekRegistryKey.enabledValue  := 1
    enableAeroPeekRegistryKey.disabledValue := 0

; ===============
; Initialization
; ===============

    ; Initially write "VisualFXSetting" registry key to "manual settings"
    writeRegistryKey( visualEffectsRegistryKey, visualEffectsRegistryKey.value )

; ========
; Hotkeys
; ========

    ; -----------------------------------------------------------------------------
    ; This is the ALT-TAB hotkey that triggers setting Aero Peek to disabled 
    ; right before Windows displays the ALt-TAB-Menu. After releasing the ALT-key,
    ; Areo Peek will be enabled again.
    ; -----------------------------------------------------------------------------
    ~!Tab::

        writeRegistryKey( enableAeroPeekRegistryKey, enableAeroPeekRegistryKey.disabledValue )
        KeyWait Alt
        writeRegistryKey( enableAeroPeekRegistryKey, enableAeroPeekRegistryKey.enabledValue )

    return

; ==========
; Functions
; ==========

    ; ----------------------------------------------------------------------
    ; Writes the given value to the given registry key. The "registryKey"
    ; is an object with the properties "valueType", "rootKey", "subKey" and
    ; "valueName", suitable to the AHK function "RegWrite".
    ; ----------------------------------------------------------------------
    writeRegistryKey( registryKey, value )
    {
        valueType   := registryKey.valueType
        rootKey     := registryKey.rootKey
        subKey      := registryKey.subKey
        valueName   := registryKey.valueName

        RegWrite %valueType%, %rootKey%, %subKey%, %valueName%, %value%
    }

Vous pouvez le distribuer librement, sous la licence FreeBSD.

1voto

PuppetMaster Points 11

Vous pouvez passer la souris sur l'aperçu des vignettes au centre de l'écran tout en maintenant la touche ALT+Tab enfoncée. Bien que l'arrière-plan Windows continue de tourner, le mouvement de la souris concentrera votre attention sur les vignettes. Je trouve cela moins déroutant que d'appuyer de façon répétée sur la touche Tab alors que la touche ALT est enfoncée. Il vous suffit ensuite de cliquer sur la fenêtre que vous souhaitez déplacer.

Win+Tab est également moins déroutant. Vous vous y habituerez peut-être plus rapidement qu'avec Alt+Tab.

Notez également que vous pouvez faire le contraire. Jusqu'à présent, nous avons été entraînés à prêter attention aux vignettes centrales. Mais avec le cycle des fenêtres offert par ALT+TAB, vous pouvez vous entraîner à ignorer les vignettes centrales et à concentrer votre attention sur le cycle des fenêtres. Après un certain temps, je suis sûr que vous vous demanderez pourquoi cela vous a posé un problème. C'est dans notre cerveau :)

0voto

Vous CAN désactiver Aero Peek pour seulement ALT + TAB

La solution consiste à définir la valeur suivante dans le Registre, qui rétablit le comportement de Windows XP en matière de ALT + TAB :

  1. Exécuter REGEDIT.EXE
  2. Naviguez vers HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer
  3. Créez une nouvelle valeur DWORD appelée AltTabSettings et définir sa valeur à 1
  4. Ce changement prend effet immédiatement.

<em>crédit : Ce SuperUser <a href="https://superuser.com/a/114058/213131">réponse</a></em>

La réponse liée fournit également une commande PowerShell qui crée la valeur ci-dessus :

Set-ItemProperty HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer AltTabSettings ([int]1)

SistemesEz.com

SystemesEZ est une communauté de sysadmins où vous pouvez résoudre vos problèmes et vos doutes. Vous pouvez consulter les questions des autres sysadmins, poser vos propres questions ou résoudre celles des autres.

Powered by:

X