본문 바로가기
컴퓨터 Computer/레지스트리

401. 윈도우10 모든 디스플레이에 작업 표시줄 표시 | Windows 10 Settings Registry - Personalization - Taskbar - Multiple displays - Show taskbar on all displays

by #XTRM 2024. 8. 12.
반응형

Windows 10 Show taskbar on all displays

Start > Windows Settings > Personalization > Taskbar

윈도우10 모든 디스플레이에 작업 표시줄 표시

시작 > Windows 설정 > 개인 설정 > 작업 표시줄

 

CMD 명령 스크립트

멀티 모니터 작업 표시줄 기능을 비활성화합니다. 0은 비활성화, 1은 활성화합니다.

reg.exe ADD "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v MMTaskbarEnabled /t REG_DWORD /d "0" /f
  • reg.exe ADD: 레지스트리에 값을 추가하거나 수정할 때 사용하는 명령어입니다.
  • "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced": 레지스트리 경로를 지정합니다. HKCU는 현재 사용자(홍보하는)의 하키(Current User) 하위 레지스트리 경로를 의미합니다. SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced는 Windows 탐색기(파일 탐색기)의 고급 설정을 포함하는 레지스트리 키입니다.
  • /v MMTaskbarEnabled: 레지스트리 값 이름을 지정합니다. 이 경우, MMTaskbarEnabled라는 값을 추가하거나 수정합니다.
  • /t REG_DWORD: 값의 데이터 유형을 지정합니다. REG_DWORD는 32비트 정수 값을 의미합니다.
  • /d "0": 값의 데이터를 지정합니다. 여기서는 0이라는 값을 설정합니다.
  • /f: 덮어쓰기를 강제 실행합니다. 기존에 동일한 값이 있더라도, 이 명령어는 강제로 값을 수정합니다.
반응형

배치 파일 스크립트 (Windows Batch Script Example)

  • MMTaskbarEnabled /t REG_DWORD /d "0" : 표시 비활성화 (Off)
  • MMTaskbarEnabled /t REG_DWORD /d "1" : 표시 활성화 (On)

윈도우10 시작 > Windows 설정 > 개인 설정 > 작업 표시줄

   >>  여러 디스플레이에 작업 표시줄 표시 : 끔 (Off)

@echo off

REM Windows 10 Windows 10 Show taskbar on all displays -Off
reg.exe ADD "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v MMTaskbarEnabled /t REG_DWORD /d "0" /f

taskkill /f /im explorer.exe
pause

start explorer.exe
exit

 

윈도우10 시작 > Windows 설정 > 개인 설정 > 작업 표시줄

   >>  여러 디스플레이에 작업 표시줄 표시  : 켬 (On)

@echo off

REM Windows 10 Windows 10 Show taskbar on all displays -On
reg.exe ADD "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v MMTaskbarEnabled /t REG_DWORD /d "1" /f

taskkill /f /im explorer.exe
pause

start explorer.exe
exit

배치 파일 (Batch File) 만들기

  • 메모장 또는 다른 텍스트 편집기를 엽니다.
  • 위의 코드를 복사하여 텍스트 편집기에 붙여넣습니다.
  • 파일을 저장합니다. 예를 들어, Taskbar_Displays.bat 로 저장합니다. 파일 확장자는 .bat로 지정해야 합니다.
  • 배치 파일을 관리자 권한으로 실행합니다. (배치 파일을 우클릭한 후 "관리자 권한으로 실행"을 선택합니다.)

<배치 파일 테스트 영상>

영상보기 : https://youtu.be/S5oG4JDfnac

 

마이크로소프트 지원 URL (Link to Microsoft Support Web Page)

Reference for Windows 11 and Windows 10 settings

Personalization - Taskbar - Multi-monitor

https://learn.microsoft.com/en-us/windows/apps/develop/settings/settings-common#personalization---taskbar---multi-monitor

 

Reference for Windows 11 and Windows 10 settings - Windows apps

This page lists the settings that are supported by both Windows 10 and Windows 11.

learn.microsoft.com

 

윈도우 설정 참고 사이트 URL (Reference site URL for Windows settings)

Hide or Show Taskbar on Multiple Displays in Windows 10

https://www.tenforums.com/tutorials/3899-hide-show-taskbar-multiple-displays-windows-10-a.html

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
MMTaskbarEnabled DWORD
0 = Don't show taskbar on multiple displays
1 = Show taskbar on multiple displays
MMTaskbarMode DWORD
0 = Show taskbar buttons on all taskbars
1 = Show taskbar buttons on main taskbar and taskbar where window is open
2 = Show taskbar buttons on taskbar where window is open

 

 

- E N D -

 

www.youtube.com/@XTRM

 

소프트엑스 XTRM

SOFTware unknown X of XTRM 컴퓨터 유지보수 기술 공유 채널입니다.

www.youtube.com

 

<소프트엑스 XTRM 추천영상>

^^*

반응형

댓글