자주 묻는 질문

윈도우10/11 탐색기 탐색창 열기/닫기 단축키 - 오토핫키

CULOV STUDIO 2024. 6. 24. 17:50

호환 : AutoHotkey v1

F3::
If A_OSVersion < "10.0.22000"
{
	RegRead, tREG, HKEY_CURRENT_USER, Software\Microsoft\Windows\CurrentVersion\Explorer\Modules\GlobalSettings\Sizer, PageSpaceControlSizer
	if (tREG = "c1000000000000000000000080070000") {
	RegWrite, REG_BINARY, HKEY_CURRENT_USER, Software\Microsoft\Windows\CurrentVersion\Explorer\Modules\GlobalSettings\Sizer, PageSpaceControlSizer, c1000000010000000000000080070000
	} else {
	RegWrite, REG_BINARY, HKEY_CURRENT_USER, Software\Microsoft\Windows\CurrentVersion\Explorer\Modules\GlobalSettings\Sizer, PageSpaceControlSizer, c1000000000000000000000080070000
	}
	Send, !{UP}
	Send, !{LEFT}
	Return
}
Else If A_OSVersion >= "10.0.22000"
{
	RegRead, tREG, HKEY_CURRENT_USER, Software\Microsoft\Windows\CurrentVersion\Explorer\Modules\GlobalSettings\Sizer, PageSpaceControlSizer
	if (tREG = "a00000000000000000000000ec030000") {
	RegWrite, REG_BINARY, HKEY_CURRENT_USER, Software\Microsoft\Windows\CurrentVersion\Explorer\Modules\GlobalSettings\Sizer, PageSpaceControlSizer, a00000000100000000000000ec030000
	} else {
	RegWrite, REG_BINARY, HKEY_CURRENT_USER, Software\Microsoft\Windows\CurrentVersion\Explorer\Modules\GlobalSettings\Sizer, PageSpaceControlSizer, a00000000000000000000000ec030000
	}
	Send, !{UP}
	Send, !{LEFT}
	Return
}
Return

 

 

일반 사용자용

오토핫키가 익숙하지 않은 일반 사용자 분들은,

1) 첨부한 exe 파일을 다운/실행하고

2) 탐색기에서 F3 키를 눌러보시면 됩니다.

탐색창토글.exe
1.04MB

※ 핫키 사용 중지 및 완전 종료 방법은 링크 내용을 확인하세요.

 

 

Hotkey 중지/종료

핫키를 사용을 중지하려면 작업표시줄에서 H 아이콘 우클릭 후 Suspend 또는 EXIT 버튼을 클립합니다...

blog.naver.com