Windows 關閉視窗搖曳功能

功能描述

windows 在滑鼠按住視窗標題欄時 若使用搖動會讓其他開啟的視窗一併縮小,如果想要還原必須在搖回去,在公司使用時會讓工作不是很方便,所以用利用 reg 的方式修改讓 windows 關閉此功能。

Disable_Aero_Shake_for_all_users.reg

Windows Registry Editor Version 5.00
; Created by: Shawn Brink
; Created on: March 1st 2015
; Tutorial: https://www.tenforums.com/tutorials/4417-aero-shake-enable-disable-windows-10-a.html

[HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Explorer]
"NoWindowMinimizingShortcuts"=dword:00000001

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Explorer]
NoWindowMinimizingShortcuts"=dword:00000001

Disable_Aero_Shake_for_current_user.reg

Windows Registry Editor Version 5.00
; Created by: Shawn Brink
; Created on: November 6th 2016
; Tutorial: https://www.tenforums.com/tutorials/4417-aero-shake-enable-disable-windows-10-a.html

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"DisallowShaking"=dword:00000001

Enable_Aero_Shake_for_all_users.reg

Windows Registry Editor Version 5.00
; Created by: Shawn Brink
; Created on: March 1st 2015
; Tutorial: https://www.tenforums.com/tutorials/4417-aero-shake-enable-disable-windows-10-a.html

[HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Explorer]
"NoWindowMinimizingShortcuts"=-

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Explorer]
"NoWindowMinimizingShortcuts"=-

Enable_Aero_Shake_for_current_user.reg

Windows Registry Editor Version 5.00
; Created by: Shawn Brink
; Created on: November 6th 2016
; Tutorial: https://www.tenforums.com/tutorials/4417-aero-shake-enable-disable-windows-10-a.html

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"DisallowShaking"=dword:00000000

  目錄