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

407. 윈도우10 알림 및 작업 - 바로 가기(Quick actions) 끄기 | Windows 10 Settings Registry - Notifications & actions - Turn off Quick Actions

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

Windows 10 Turn off Quick Actions

Start > Windows Settings > System > Notifications & actions > Quick actions > Edit your quick actions

 

윈도우10 바로 가기(Quick actions) 끄기

시작 > Windows 설정 > 시스템 > 알림 및 작업 > 바로 가기 > 바로 가기 편집

 

CMD 명령 스크립트

이 명령어는 Windows 레지스트리에서 "HKCU\Control Panel\Quick Actions\Pinned" 경로 아래에 PinnedQuickActions라는 이름의 바이너리 데이터를 추가하거나 수정합니다. 이 데이터는 빈 값으로 설정되며, 이는 사용자가 '빠른 동작'에 고정한 항목들을 제거하거나 초기화하는 데 사용될 수 있습니다. 

reg.exe ADD "HKCU\Control Panel\Quick Actions\Pinned" /v PinnedQuickActions /t REG_BINARY /d "" /f
  • reg.exe는 Windows 레지스트리를 조작하는 명령어 도구입니다.
  • ADD는 새로운 레지스트리 키 또는 값을 추가하는 작업을 수행합니다.
  • HKCU는 "HKEY_CURRENT_USER"의 약자로, 현재 로그인한 사용자의 레지스트리 하이브를 나타냅니다. 이 경로는 현재 사용자의 설정과 관련된 레지스트리 키를 나타냅니다.
  • Control Panel\Quick Actions\Pinned는 특정 레지스트리 경로입니다. 이 경로는 사용자가 '빠른 동작(Quick Actions)'에 고정한 항목에 대한 정보를 저장합니다.
  • /v는 추가하거나 수정할 레지스트리 값을 지정하는 옵션입니다.
  • PinnedQuickActions는 설정하려는 레지스트리 값의 이름입니다. 이 값은 사용자가 '빠른 동작'에 고정한 항목들을 나타냅니다.
  • /t는 레지스트리 값의 데이터 유형을 지정하는 옵션입니다.
  • REG_BINARY는 이 레지스트리 값이 바이너리 데이터 형식을 사용함을 의미합니다.
  • /d는 레지스트리 값에 설정할 데이터를 지정하는 옵션입니다.
  • ""은 빈 데이터를 의미합니다. 즉, 이 명령어는 PinnedQuickActions 값을 빈 바이너리 데이터로 설정합니다.
  • /f는 확인 메시지 없이 강제로 레지스트리 값을 추가하거나 수정하는 옵션입니다.
반응형

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

윈도우 10 시작 > Windows 설정 > 시스템 > 알림 및 작업 > 바로 가기 > 바로 가기 편집
 - 윈도우10 바로 가기(Quick actions) 끄기

@echo off

REM Windows 10 Turn off Quick Actions
reg.exe ADD "HKCU\Control Panel\Quick Actions\Pinned" /v PinnedQuickActions /t REG_BINARY /d "" /f

Reboot the system.
pause
exit

 

배치 파일 (Batch File) 만들기

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

<배치 파일 테스트 영상>

영상보기 : https://www.youtube.com/@XTRM-

 

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

Change notification and quick settings in Windows

https://support.microsoft.com/en-us/windows/change-notification-and-quick-settings-in-windows-ddcbbcd4-0a02-f6e4-fe14-6766d850f294

 

Change notification and quick settings in Windows - Microsoft Support

In Windows 11, notification center is where you'll find app notifications and quick settings—which give you quick access to commonly used settings and apps. You can change your notification settings at any time from the Settings app. Customize notificat

support.microsoft.com

 

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

Add or Remove Quick Actions in Action Center in Windows 10

https://www.tenforums.com/tutorials/3956-add-remove-quick-actions-action-center-windows-10-a.html

 

How to reset Quick Actions in Action Center of Windows 10

https://winaero.com/how-to-reset-quick-actions-in-action-center-of-windows-10/

 

How to reset Quick Actions in Action Center of Windows 10

Windows 10 allows you to customize the Quick Actions visible in Action Center. Some day you might want to reset the Action Center buttons to their default set.

winaero.com

 

 

- E N D -

 

www.youtube.com/@XTRM

 

소프트엑스 XTRM

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

www.youtube.com

 

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

^^*

반응형

댓글