Windows 10 When I'm using an app in full screen
Start > Windows Settings > System > Focus assist > Automatic rules
윈도우10 전체 화면 모드로 앱을 사용할 때
시작 > Windows 설정 > 시스템 > 집중 지원 > 자동 규칙
CMD (Command Prompt) 명령 스크립트
이 명령어는 Quiet Hours 또는 Focus Assist 기능이 전체 화면 모드에서 어떻게 동작할지를 정의하는 설정을 Windows 레지스트리에 추가하거나 수정합니다. 이 기능들은 사용자가 전체 화면 애플리케이션(예: 게임, 영화 감상)에서 작업할 때 방해받지 않도록 알림을 차단합니다. 명령어에서 설정하는 이진 데이터는 이러한 기능이 전체 화면 모드에서 동작하는 구체적인 방식을 정의합니다.
reg.exe ADD "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\CloudStore\Store\Cache\DefaultAccount\$quietmomentfullscreen$windows.data.notifications.quietmoment\Current" /v Data /t REG_BINARY /d "02000000B9EC23A7C666D9010000000043420100C20A01D21E264D006900630072006F0073006F00660074002E005100750069006500740048006F00750072007300500072006F00660069006C0065002E0041006C00610072006D0073004F006E006C007900C22801CA500000" /f
- reg.exe ADD: reg.exe는 Windows 레지스트리 키와 값을 관리하는 명령줄 도구입니다. ADD는 새로운 레지스트리 값을 추가하거나 기존 값을 수정할 때 사용됩니다.
- "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\CloudStore\Store\Cache\DefaultAccount\$quietmomentfullscreen$windows.data.notifications.quietmoment\Current": 이 부분은 레지스트리 경로를 나타냅니다.
**HKCU**는 "HKEY_CURRENT_USER"의 약어로, 현재 사용자의 레지스트리 설정을 의미합니다.
CloudStore\Store\Cache\DefaultAccount 아래의 **$quietmomentfullscreen$windows.data.notifications.quietmoment\Current**는 Quiet Hours 또는 Focus Assist와 관련된 특정 설정을 저장하는 경로입니다.
**$quietmomentfullscreen$**는 전체 화면 모드에서 Quiet Hours 또는 Focus Assist가 어떻게 동작할지를 지정하는 설정을 나타냅니다. - /v Data: /v는 레지스트리 값의 이름을 지정하는 옵션입니다. 여기서는 Data라는 값을 설정합니다.
- /t REG_BINARY: /t는 레지스트리 값의 데이터 형식을 지정하는 옵션입니다. REG_BINARY는 이진 데이터 형식을 나타냅니다.
- /d "02000000B9EC23A7C666D9010000000043420100C20A01D21E264D006900630072006F0073006F00660074002E005100750069006500740048006F00750072007300500072006F00660069006C0065002E0041006C00610072006D0073004F006E006C007900C22801CA500000": /d는 레지스트리 값 데이터를 지정하는 옵션입니다. 여기서 제공된 이진 데이터는 Quiet Hours 또는 Focus Assist 기능이 전체 화면 모드에서 동작하는 방식과 관련된 설정을 포함하고 있습니다. 그 정확한 의미는 Microsoft의 내부 시스템 또는 프로필에 따라 다를 수 있습니다.
- /f: /f는 동일한 이름의 레지스트리 값이 이미 존재할 경우, 확인 없이 덮어쓰라는 옵션입니다.
배치 파일 스크립트 (Windows Batch Script Example)
윈도우10 시작 > Windows 설정 > 시스템 > 집중 지원 > 자동 규칙
>> 전체 화면 모드로 앱을 사용할 때 : 체크 해제 (Off)
@echo off
REM Windows 10 Focus assist - Automatic rules - When I'm using an app in full screen -Off
reg.exe ADD "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\CloudStore\Store\Cache\DefaultAccount\$quietmomentfullscreen$windows.data.notifications.quietmoment\Current" /v Data /t REG_BINARY /d "02000000B9EC23A7C666D9010000000043420100C20A01D21E264D006900630072006F0073006F00660074002E005100750069006500740048006F00750072007300500072006F00660069006C0065002E0041006C00610072006D0073004F006E006C007900C22801CA500000" /f
echo. Log off your computer. Please log in again
pause
shutdown.exe -l -f
exit
배치 파일 (Batch File) 만들기
- 메모장 또는 다른 텍스트 편집기를 엽니다.
- 위의 코드를 복사하여 텍스트 편집기에 붙여넣습니다.
- 파일을 저장합니다. 예를 들어, Windows_Settings.bat 로 저장합니다. 파일 확장자는 .bat로 지정해야 합니다.
- 배치 파일을 관리자 권한으로 실행합니다. (배치 파일을 우클릭한 후 "관리자 권한으로 실행"을 선택합니다.)
배치 파일 테스트 영상 (Batch file tested video)
영상보기 : https://youtu.be/NqtgmHTr9nU
윈도우 설정 참고 사이트 URL (Reference site URL for Windows settings)
마이크로소프트 지원 URL (Link to Microsoft Support Web Page)
Turn off notifications in Windows during certain times
https://support.microsoft.com/en-us/windows/turn-off-notifications-in-windows-during-certain-times-81ed1b25-809b-741d-549c-7696474d15d3
Turn off notifications in Windows during certain times - Microsoft Support
Do not disturb allows you to avoid distracting notifications when you need to stay focused. It's set by default to activate automatically when you're duplicating your display, playing a game, or using an app in full screen mode. You can control any or all
support.microsoft.com
- E N D -
소프트엑스 XTRM
SOFTware unknown X of XTRM 컴퓨터 유지보수 기술 공유 채널입니다.
www.youtube.com
<소프트엑스 XTRM 추천영상>
^^*
댓글