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

404. 윈도우10 작업 표시줄에 표시할 아이콘 선택 - 알림 영역의 모든 아이콘 숨기기 | Windows 10 Settings Registry - Taskbar - Select which icons on the taskbar

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

Windows 10 Select which icons on the taskbar

Start > Windows Settings > Personalization > Taskbar > Notification area > Select which icons on the taskbar
 - Hide all icons in the notification area

윈도우10 작업 표시줄에 표시할 아이콘 선택

시작 > Windows 설정 > 개인 설정 > 작업 표시줄 > 알림 영역 > 작업 표시줄에 표시할 아이콘 선택
 - 알림 영역의 모든 아이콘 숨기기

 

CMD 명령 스크립트

시스템 트레이(작업 표시줄의 오른쪽 하단에 있는 영역)에서 모든 아이콘을 숨기도록 설정합니다.

reg.exe ADD "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v NoTrayItemsDisplay /t REG_DWORD /d "1" /f
  • reg.exe ADD: reg.exe는 Windows에서 레지스트리를 조작하는 명령줄 도구입니다. ADD 옵션은 새로운 레지스트리 키나 값을 추가할 때 사용합니다.
  • "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer": 이 부분은 레지스트리 경로를 지정합니다.
    HKCU: HKEY_CURRENT_USER의 약어로, 현재 사용자에게만 적용되는 설정을 저장합니다.
    SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer: Windows 탐색기와 관련된 정책 설정을 저장하는 위치입니다.
  • /v NoTrayItemsDisplay: NoTrayItemsDisplay라는 이름의 값을 추가하거나 수정합니다. /v는 추가 또는 수정할 값을 지정할 때 사용합니다.
  • /t REG_DWORD: 추가할 값의 데이터 유형을 지정합니다. REG_DWORD는 32비트 정수 형식의 데이터 유형입니다.
  • /d "1": NoTrayItemsDisplay 값의 데이터를 1로 설정합니다. 이 값은 시스템 트레이(작업 표시줄의 오른쪽 하단에 있는 영역)에서 모든 아이콘을 숨기도록 설정합니다.
  • /f: 강제 실행 플래그입니다. 확인 메시지를 표시하지 않고 명령을 강제로 실행하며, 동일한 이름의 값이 이미 존재하면 덮어씁니다.
반응형

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

윈도우 10 시작 > Windows 설정 > 개인 설정 > 작업 표시줄 > 알림 영역 > 작업 표시줄에 표시할 아이콘 선택
 - 작업 표시줄  알림 영역의 모든 아이콘 숨기기

@echo off

REM Windows 10 Select which icons on the taskbar - Hide all icons in the notification area
reg.exe ADD "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v NoTrayItemsDisplay /t REG_DWORD /d "1" /f

taskkill /f /im explorer.exe
pause

start explorer.exe
exit

 

배치 파일 (Batch File) 만들기

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

<배치 파일 테스트 영상>

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

 

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

Policy CSP - ADMX_StartMenu - NoTrayItemsDisplay

https://learn.microsoft.com/en-us/windows/client-management/mdm/policy-csp-admx-startmenu#notrayitemsdisplay

 

ADMX_StartMenu Policy CSP

Learn more about the ADMX_StartMenu Area in Policy CSP.

learn.microsoft.com

 

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

Hide the notification area

https://admx.help/?Category=Windows_10_2016&Policy=Microsoft.Policies.StartMenu::NoTrayItemsDisplay

Registry Hive HKEY_CURRENT_USER
Registry Path Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
Value Name NoTrayItemsDisplay
Value Type REG_DWORD
Enabled Value 1
Disabled Value 0

 

How to Add or Remove Notification Area on Taskbar in Windows 10

https://www.tenforums.com/tutorials/86654-add-remove-notification-area-taskbar-windows-10-a.html

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer
NoTrayItemsDisplay DWORD
(delete) = Add
1 = Remove

 

- E N D -

 

www.youtube.com/@XTRM

 

소프트엑스 XTRM

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

www.youtube.com

 

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

^^*

반응형

댓글