मुझे पता है कि यह एक पुराना विषय है, लेकिन मैंने कार्यों को स्विच करने के लिए Alt+ TABका उपयोग करते समय Areo Peek फीचर को कभी पसंद नहीं किया । इसके अलावा, मैं Areo Peek को पूरी तरह से मना नहीं करता हूं - उदाहरण के लिए, मुझे अपने विंडोज डेस्कटॉप का उपयोग करके WIN+ पर एक नज़र डालना पसंद है Space।
मैंने Areo Peek को केवल Alt+ TABकार्य स्विचिंग के लिए अक्षम करने की बहुत कोशिश की , लेकिन वास्तव में मेरे लिए कुछ भी काम नहीं किया। मैं सभी रजिस्ट्री संकेत के बारे में जानता हूं, उदाहरण के लिए मिलीसेकंड में एयरो पीक देरी की स्थापना बहुत अधिक मूल्य पर। लेकिन यह काम नहीं करता है, कम से कम सभी मशीनों पर नहीं - मेरे अनुभव से, आप एक उच्च मूल्य सेट कर सकते हैं जो अभी भी आंतरिक रूप से 3000 एमएस तक सीमित है (शायद यह विंडोज 7 के लिए सर्विस पैक से पहले काम किया था)।
इसलिए मैंने एक और रास्ता तय किया और ऑटोहॉट्की के माध्यम से इस मुद्दे को हल करने का प्रयास किया । यह स्क्रिप्ट Aero Peek को केवल Alt+ के लिए अक्षम करती है TAB, और केवल इसके लिए - तो आप अभी भी अन्य Aero Peek सुविधाओं का उपयोग कर सकते हैं।
स्क्रिप्ट को AutoHotkey वर्जन "AutoHotkey_L 1.1.00.00" के साथ विंडोज 7 प्रोफेशनल 64 बिट के साथ विंडोज यूजर के साथ एडमिन राइट्स के साथ टेस्ट किया जाता है - और अब तक सभी सिस्टम पर काम करने की सूचना मिली, जिससे मुझे फीडबैक मिला। बस AutoHotkey इंस्टॉल करें और विंडोज शुरू होने पर स्क्रिप्ट फाइल को अपने आप चलाने के लिए सेट करें। यह बहुत हल्का है, केवल बहुत कम संसाधनों और सीपीयू समय का उपयोग करते हुए।
मैं इसे यहाँ पोस्ट करता हूँ उम्मीद है कि यह इस मुद्दे को होने में किसी की मदद करेगा। कृपया स्क्रिप्ट डाउनलोड करें:
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%
}
आप इसे फ्रीबीएसडी-लाइसेंस के तहत स्वतंत्र रूप से वितरित कर सकते हैं।