https://github.com/zz1231me/URL-Alive-Check

 

GitHub - zz1231me/URL-Alive-Check

Contribute to zz1231me/URL-Alive-Check development by creating an account on GitHub.

github.com

 

 

1. UI / 탐색기

'Show more options' 없애기 (Windows 10 우클릭 메뉴로 복구)

reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve

복구 (Windows 11 기본 메뉴로 되돌리기)

reg delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f

파일 탐색기 왼쪽 메뉴에서 OneDrive 숨기기

reg add "HKCU\Software\Classes\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /v System.IsPinnedToNameSpaceTree /t REG_DWORD /d 0 /f

복구

reg add "HKCU\Software\Classes\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /v System.IsPinnedToNameSpaceTree /t REG_DWORD /d 1 /f

탐색기 왼쪽 메뉴에서 '갤러리' 탭 숨기기

reg add "HKCU\Software\Classes\CLSID\{e88865ea-0e1c-4e20-9aa6-edcd0212c87c}" /v System.IsPinnedToNameSpaceTree /t REG_DWORD /d 0 /f

복구

reg delete "HKCU\Software\Classes\CLSID\{e88865ea-0e1c-4e20-9aa6-edcd0212c87c}" /f

모든 파일 확장자(.exe, .txt 등) 항상 표시

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v HideFileExt /t REG_DWORD /d 0 /f

복구 (확장자 숨김 원래대로)

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v HideFileExt /t REG_DWORD /d 1 /f

작업 표시줄 시계에 초(Second) 단위 표시

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowSecondsInSystemClock /t REG_DWORD /d 1 /f

복구

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v ShowSecondsInSystemClock /t REG_DWORD /d 0 /f

창 흔들 때 다른 창 최소화 현상(에어로 셰이크) 끄기

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v DisallowShaking /t REG_DWORD /d 1 /f

복구

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v DisallowShaking /t REG_DWORD /d 0 /f

스크롤바 항상 표시 (마우스 이동 시 숨김 방지)

reg add "HKCU\Control Panel\Accessibility" /v DynamicScrollbars /t REG_DWORD /d 0 /f

복구

reg add "HKCU\Control Panel\Accessibility" /v DynamicScrollbars /t REG_DWORD /d 1 /f

바탕화면 아이콘 캐시 늘리기 (아이콘 깨짐 방지)

reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v "Max Cached Icons" /t REG_SZ /d "8192" /f

복구 (기본값 4096)

reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v "Max Cached Icons" /t REG_SZ /d "4096" /f

바탕화면 아이콘 바로가기 화살표 제거

reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /t REG_SZ /d "%windir%\System32\shell32.dll,-50" /f

복구

reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /f

로그인 화면 블러(흐림) 효과 제거

reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v DisableAcrylicBackgroundOnLogon /t REG_DWORD /d 1 /f

복구

reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v DisableAcrylicBackgroundOnLogon /f

하위 메뉴 표시 속도 높이기 (기본값: 400ms)

reg add "HKCU\Control Panel\Desktop" /v MenuShowDelay /t REG_SZ /d 10 /f

복구 (기본값)

reg add "HKCU\Control Panel\Desktop" /v MenuShowDelay /t REG_SZ /d 400 /f

2. 시작 메뉴 / 검색

시작 메뉴 검색창 웹 검색(Bing) 끄기

완전 차단을 위해 두 명령어를 모두 실행

reg add "HKCU\Software\Policies\Microsoft\Windows\Explorer" /v DisableSearchBoxSuggestions /t REG_DWORD /d 1 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Search" /v BingSearchEnabled /t REG_DWORD /d 0 /f

복구

reg delete "HKCU\Software\Policies\Microsoft\Windows\Explorer" /v DisableSearchBoxSuggestions /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Search" /v BingSearchEnabled /t REG_DWORD /d 1 /f

시작 메뉴 '최근 열어본 파일' 표시 끄기

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v Start_TrackDocs /t REG_DWORD /d 0 /f

복구

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v Start_TrackDocs /t REG_DWORD /d 1 /f

시작 메뉴 '새로 설치한 앱 추천' 끄기

reg add "HKCU\Software\Policies\Microsoft\Windows\Explorer" /v HideRecentlyAddedApps /t REG_DWORD /d 1 /f

복구

reg delete "HKCU\Software\Policies\Microsoft\Windows\Explorer" /v HideRecentlyAddedApps /f

파일 열 때 "새로운 앱이 있습니다" 알림 끄기

reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Explorer" /v NoNewAppAlert /t REG_DWORD /d 1 /f

복구

reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\Explorer" /v NoNewAppAlert /f

3. 성능 / 부팅

부팅 시 잠금 화면 건너뛰기

reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Personalization" /v NoLockScreen /t REG_DWORD /d 1 /f

복구

reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\Personalization" /v NoLockScreen /f

부팅 시 시작 프로그램 지연 시간 제거

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Serialize" /v StartupDelayInMSec /t REG_DWORD /d 0 /f

복구 (기본값 삭제로 복구)

reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Serialize" /v StartupDelayInMSec /f

부팅/종료 시 상세 상태 메시지 표시

reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v verbosestatus /t REG_DWORD /d 1 /f

복구

reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v verbosestatus /t REG_DWORD /d 0 /f

종료 시 응답 없는 프로그램 자동 강제 종료

reg add "HKCU\Control Panel\Desktop" /v AutoEndTasks /t REG_SZ /d 1 /f

복구

reg add "HKCU\Control Panel\Desktop" /v AutoEndTasks /t REG_SZ /d 0 /f

윈도우 업데이트 자동 재부팅 차단

reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v NoAutoRebootWithLoggedOnUsers /t REG_DWORD /d 1 /f

복구

reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU" /v NoAutoRebootWithLoggedOnUsers /f

빠른 시작(Fast Startup) 비활성화 (잔고장 방지)

reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /v HiberbootEnabled /t REG_DWORD /d 0 /f

복구

reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /v HiberbootEnabled /t REG_DWORD /d 1 /f

게임 바(Game DVR) 백그라운드 녹화 끄기

reg add "HKCU\System\GameConfigStore" /v GameDVR_Enabled /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\GameDVR" /v AppCaptureEnabled /t REG_DWORD /d 0 /f

복구

reg add "HKCU\System\GameConfigStore" /v GameDVR_Enabled /t REG_DWORD /d 1 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\GameDVR" /v AppCaptureEnabled /t REG_DWORD /d 1 /f

네트워크 스로틀링 해제 (핑/게임 반응속도 개선)

reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile" /v NetworkThrottlingIndex /t REG_DWORD /d 4294967295 /f

복구 (기본값 10)

reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile" /v NetworkThrottlingIndex /t REG_DWORD /d 10 /f

프로그램 오류 보고 창 비활성화

reg add "HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting" /v Disabled /t REG_DWORD /d 1 /f

복구

reg add "HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting" /v Disabled /t REG_DWORD /d 0 /f

4. 프라이버시 / 데이터 수집

Microsoft 원격 분석(텔레메트리) 데이터 수집 끄기

reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v AllowTelemetry /t REG_DWORD /d 0 /f

복구 (기본값 1)

reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v AllowTelemetry /t REG_DWORD /d 1 /f

맞춤형 광고/팁 (진단 데이터 기반) 차단

reg add "HKCU\Software\Policies\Microsoft\Windows\CloudContent" /v DisableTailoredExperiencesWithDiagnosticData /t REG_DWORD /d 1 /f

복구

reg delete "HKCU\Software\Policies\Microsoft\Windows\CloudContent" /v DisableTailoredExperiencesWithDiagnosticData /f

5. 우클릭 메뉴 추가 기능

우클릭 메뉴에 '폴더로 복사 / 폴더로 이동' 추가

reg add "HKCR\AllFilesystemObjects\shellex\ContextMenuHandlers\CopyToFolder" /ve /t REG_SZ /d "{C2FBB630-5571-11D1-A98C-00C04FD8D565}" /f
reg add "HKCR\AllFilesystemObjects\shellex\ContextMenuHandlers\MoveToFolder" /ve /t REG_SZ /d "{C2FBB631-5571-11D1-A98C-00C04FD8D565}" /f

복구

reg delete "HKCR\AllFilesystemObjects\shellex\ContextMenuHandlers\CopyToFolder" /f
reg delete "HKCR\AllFilesystemObjects\shellex\ContextMenuHandlers\MoveToFolder" /f

바탕화면 우클릭에 '관리자 권한으로 CMD 열기' 추가

바탕화면 빈 공간 우클릭

reg add "HKCR\Directory\Background\shell\runas" /ve /t REG_SZ /d "관리자 권한으로 CMD 열기" /f
reg add "HKCR\Directory\Background\shell\runas" /v "HasLUAShield" /t REG_SZ /d "" /f
reg add "HKCR\Directory\Background\shell\runas\command" /ve /t REG_SZ /d "cmd.exe /s /k pushd \"%V\"" /f

폴더 아이콘 우클릭

reg add "HKCR\Directory\shell\runas" /ve /t REG_SZ /d "관리자 권한으로 CMD 열기" /f
reg add "HKCR\Directory\shell\runas" /v "HasLUAShield" /t REG_SZ /d "" /f
reg add "HKCR\Directory\shell\runas\command" /ve /t REG_SZ /d "cmd.exe /s /k pushd \"%1\"" /f

드라이브(C:, D: 등) 우클릭

reg add "HKCR\Drive\shell\runas" /ve /t REG_SZ /d "관리자 권한으로 CMD 열기" /f
reg add "HKCR\Drive\shell\runas" /v "HasLUAShield" /t REG_SZ /d "" /f
reg add "HKCR\Drive\shell\runas\command" /ve /t REG_SZ /d "cmd.exe /s /k pushd \"%1\"" /f

복구 (3가지 모두 제거)

reg delete "HKCR\Directory\Background\shell\runas" /f
reg delete "HKCR\Directory\shell\runas" /f
reg delete "HKCR\Drive\shell\runas" /f

바탕화면 우클릭에 '탐색기 다시 시작' 추가

reg add "HKCR\Directory\Background\shell\RestartExplorer" /ve /t REG_SZ /d "탐색기 다시 시작" /f
reg add "HKCR\Directory\Background\shell\RestartExplorer" /v "Icon" /t REG_SZ /d "explorer.exe" /f
reg add "HKCR\Directory\Background\shell\RestartExplorer\command" /ve /t REG_SZ /d "cmd.exe /c taskkill /f /im explorer.exe & start explorer.exe" /f

복구

reg delete "HKCR\Directory\Background\shell\RestartExplorer" /f

바탕화면 우클릭에 '구형 제어판' 추가

reg add "HKCR\Directory\Background\shell\ControlPanel" /ve /t REG_SZ /d "제어판 열기" /f
reg add "HKCR\Directory\Background\shell\ControlPanel" /v "Icon" /t REG_SZ /d "control.exe" /f
reg add "HKCR\Directory\Background\shell\ControlPanel\command" /ve /t REG_SZ /d "control.exe" /f

복구

reg delete "HKCR\Directory\Background\shell\ControlPanel" /f

6. 시스템 알림 끄기

모든 앱/시스템 알림(토스트) 전부 끄기

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\PushNotifications" /v ToastEnabled /t REG_DWORD /d 0 /f

복구

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\PushNotifications" /v ToastEnabled /t REG_DWORD /d 1 /f

알림 센터(Action Center) 자체 비활성화

reg add "HKCU\Software\Policies\Microsoft\Windows\Explorer" /v DisableNotificationCenter /t REG_DWORD /d 1 /f

복구

reg delete "HKCU\Software\Policies\Microsoft\Windows\Explorer" /v DisableNotificationCenter /f

7. 시작 메뉴 개인 설정 끄기

① 가장 많이 사용하는 앱 표시 끄기

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Start" /v ShowFrequentList /t REG_DWORD /d 0 /f

복구

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Start" /v ShowFrequentList /t REG_DWORD /d 1 /f

② 추천 파일 / 최근 파일 / 점프 목록 항목 표시 끄기

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v Start_TrackDocs /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v Start_TrackProgs /t REG_DWORD /d 0 /f

복구

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v Start_TrackDocs /t REG_DWORD /d 1 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v Start_TrackProgs /t REG_DWORD /d 1 /f

③ 검색 기록에서 웹 사이트 표시 끄기

reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Explorer" /v HideRecommendedPersonalizedSites /t REG_DWORD /d 1 /f
reg add "HKCU\Software\Policies\Microsoft\Windows\Explorer" /v HideRecommendedPersonalizedSites /t REG_DWORD /d 1 /f

복구

reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\Explorer" /v HideRecommendedPersonalizedSites /f
reg delete "HKCU\Software\Policies\Microsoft\Windows\Explorer" /v HideRecommendedPersonalizedSites /f

④ 팁, 바로가기, 새 앱 등 권장사항 표시 끄기

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v Start_IrisRecommendations /t REG_DWORD /d 0 /f

복구

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v Start_IrisRecommendations /t REG_DWORD /d 1 /f

⑤ 계정 관련 알림 표시 끄기

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v Start_AccountNotifications /t REG_DWORD /d 0 /f

복구

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v Start_AccountNotifications /t REG_DWORD /d 1 /f

8. 추가 최적화 / 프라이버시

CPU 파워 스로틀링 끄기 (성능 향상)

Windows가 백그라운드 프로세스를 자동으로 throttle하는 기능을 끕니다. 게임 중 FPS 드롭, 작업 중 앱 응답 지연에 효과 있습니다.

⚠️ 노트북은 배터리 소모가 증가할 수 있으므로 데스크탑 전용을 권장

reg add "HKLM\SYSTEM\CurrentControlSet\Control\Power\PowerThrottling" /v PowerThrottlingOff /t REG_DWORD /d 1 /f

복구

reg delete "HKLM\SYSTEM\CurrentControlSet\Control\Power\PowerThrottling" /v PowerThrottlingOff /f

StickyKeys / FilterKeys / ToggleKeys 팝업 완전 차단

Shift 5번 연타 시 뜨는 접근성 팝업을 끕니다. 게임 중 자주 발생하는 대표적인 불편 요소입니다.

reg add "HKCU\Control Panel\Accessibility\StickyKeys" /v Flags /t REG_SZ /d 506 /f
reg add "HKCU\Control Panel\Accessibility\Keyboard Response" /v Flags /t REG_SZ /d 122 /f
reg add "HKCU\Control Panel\Accessibility\ToggleKeys" /v Flags /t REG_SZ /d 58 /f

복구 (기본값)

reg add "HKCU\Control Panel\Accessibility\StickyKeys" /v Flags /t REG_SZ /d 510 /f
reg add "HKCU\Control Panel\Accessibility\Keyboard Response" /v Flags /t REG_SZ /d 126 /f
reg add "HKCU\Control Panel\Accessibility\ToggleKeys" /v Flags /t REG_SZ /d 62 /f

광고 ID(Advertising ID) 비활성화

앱들이 광고 타겟팅에 사용하는 고유 식별자를 끕니다.

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\AdvertisingInfo" /v Enabled /t REG_DWORD /d 0 /f

복구

reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\AdvertisingInfo" /v Enabled /t REG_DWORD /d 1 /f

잉크 / 타이핑 개인화 데이터 수집 끄기

키보드 입력 패턴을 Microsoft 서버로 전송하는 기능을 차단합니다.

reg add "HKCU\Software\Microsoft\InputPersonalization" /v RestrictImplicitInkCollection /t REG_DWORD /d 1 /f
reg add "HKCU\Software\Microsoft\InputPersonalization" /v RestrictImplicitTextCollection /t REG_DWORD /d 1 /f
reg add "HKCU\Software\Microsoft\InputPersonalization\TrainedDataStore" /v HarvestContacts /t REG_DWORD /d 0 /f

복구

reg add "HKCU\Software\Microsoft\InputPersonalization" /v RestrictImplicitInkCollection /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\InputPersonalization" /v RestrictImplicitTextCollection /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\InputPersonalization\TrainedDataStore" /v HarvestContacts /t REG_DWORD /d 1 /f

9. 탐색기 재시작 (즉시 적용)

설정 변경 후 재부팅 없이 즉시 반영하려면 아래 명령어를 실행하세요.

taskkill /f /im explorer.exe & start explorer.exe

📦 전체 백업 / 복구

적용 전 레지스트리 백업 (권장)

reg export HKCU C:\reg_backup_HKCU.reg /y
reg export HKCR C:\reg_backup_HKCR.reg /y
reg export HKLM C:\reg_backup_HKLM.reg /y

백업으로 전체 복구

reg import C:\reg_backup_HKCU.reg
reg import C:\reg_backup_HKCR.reg
reg import C:\reg_backup_HKLM.reg

'🥕 저장소 (Dev & Tools) > 잡다구리 (ETC)' 카테고리의 다른 글

Proxmox VE + OPNsense  (0) 2026.03.14
[Win] RDP 성능 최적화  (0) 2026.03.02
CryptoJS AES  (0) 2026.02.24
Proxmark3 × ChameleonUltra  (0) 2026.02.21
해킹 상황별 도구 및 활용 전략  (0) 2026.02.21

Part 1. 그룹 정책 — GPU 및 H.264 활성화

 

Win + Rgpedit.msc

경로:

컴퓨터 구성 → 관리 템플릿 → Windows 구성 요소
→ 터미널 서비스 → 원격 데스크톱 세션 호스트 → 원격 세션 환경
항목 설정값
모든 원격 데스크톱 서비스 세션에 하드웨어 그래픽 어댑터 사용 사용
원격 데스크톱 연결에 대해 H.264/AVC 하드웨어 인코딩 구성 사용
원격 데스크톱 연결에 대해 H.264/AVC 444 그래픽 모드 우선 순위 지정 사용

Part 2. 레지스트리 — 60fps 상한 해제

 

Win + Rregedit

경로:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations

새로 만들기 → DWORD(32비트) → 이름: DWMFRAMEINTERVAL → 값: 15 (10진수)

의미
15 최대 60fps 허용
33 최대 30fps (기본값)

Part 3. 그룹 정책 — UDP 전송 프로토콜 활성화

 

기본 RDP는 TCP만 사용합니다. UDP를 함께 허용하면 지연 감소와 안정성이 향상됩니다.

경로:

컴퓨터 구성 → 관리 템플릿 → Windows 구성 요소
→ 터미널 서비스 → 원격 데스크톱 세션 호스트 → 연결
항목 설정값
RDP 전송 프로토콜 선택 사용 → 하위 옵션: "UDP 및 TCP 사용" 선택

 

'🥕 저장소 (Dev & Tools) > 잡다구리 (ETC)' 카테고리의 다른 글

Proxmox VE + OPNsense  (0) 2026.03.14
[WIN 11] 레지스트리 최적화  (0) 2026.03.08
CryptoJS AES  (0) 2026.02.24
Proxmark3 × ChameleonUltra  (0) 2026.02.21
해킹 상황별 도구 및 활용 전략  (0) 2026.02.21

+ Recent posts