윈도우 미디어 플레이어 Folder.jpg, AlbumArtSmall.jpg 생성 방지 레지스트리 키


[HKEY_CURRENT_USER\Software\Microsoft\MediaPlayer\Preferences]
"LargeAlbumArtSize"=dword:ffffffff
"SmallAlbumArtSize"=dword:ffffffff


WindowsMediaPlayer_AlbumArt_DisableAutoGenerateThumbnailsAlbumArtSmall_jpgandFolder_jpg.reg

윈도우 10 OneDrive 바로가기 삭제 레지스트리 키


[-HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}]


[-HKEY_CLASSES_ROOT\WOW6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}]


[-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{018D5C66-4533-4307-9B53-224DE2ED1FE6}]


[-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel\{018D5C66-4533-4307-9B53-224DE2ED1FE6}]


[-HKEY_USERS\S-1-5-21-1649137310-3768090468-3701826991-1001\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{018D5C66-4533-4307-9B53-224DE2ED1FE6}]


Windows10_OneDrive_Delete.reg

윈도우 구성요소 저장소에서 파일 손상 검사

- 명령 프롬프트 (관리자 권한으로 실행) > dism /online /cleanup-image /restorehealth


윈도우 시스템파일 무결성 검사

- 명령 프롬프트 (관리자 권한으로 실행) > sfc /scannow


윈도우10 스토어 앱

- 검색 > WSReset.exe (관리자 권한으로 실행)

- 설정 > 업데이트 및 복구 > 문제해결 > Windows 스토어 앱


윈도우10 라이브 타일

- Windows 방화벽 > 해당 앱 체크해제 후 다시 체크

Windows 10


- 보통 SSD 최신 드라이버 설치 시 AHCI, SCT, Trim 기능이 자동으로 작동함

- 관리도구 > 디스크 조각모음 및 최적화 (SSD 인식 시 Trim 기능으로 작동하니, 매일 실행하도록 예약)

- 서비스 > Windows Search 끄기

- SSD 드라이브 속성 > 색인 기능 끄기

- 윈도우 복원 기능 끄기

- 시스템 메모리가 충분한 경우 스왑파일 기능 끄기


macOS


- Sierra 이후 보통 AHCI, Trim 기능이 자동으로 작동함

- Apple FS (APFS) 부터 Trim 기능이 흡수됨

- Trim 기능 실행 설정 명령어: 터미널 > sudo trimforce enable


Shutdown.cmd

 

@echo off

echo Shudown Schedule.

echo.


cd \

set /a h=0

set /a m=0

set /a st=0

set /a t=0


set /p h="Hour: "

set /p m="Minute: "

set /p st="0. Shutdwon, 1. Restart: "


if "%h%"=="" set /a h=0

if "%m%"=="" set /a m=0


set /a ht=%h%*3600

set /a mt=%m%*60

set /a t=%ht%+%mt%


cls

echo.


if %t%==0 shutdown /a


echo.


if %t%==0 echo  Schedule aborted. & echo. & echo.

if %t%==0 timeout 3

if %t%==0 exit


if %st%==0 shutdown /s /f /t %t%

if %st%==0 echo  System will shutdown in %h%h %m%m.

if %st%==1 shutdown /r /f /t %t%

if %st%==1 echo  System will restart in %h%h %m%m.


echo.

echo.


timeout 3


Shutdown.cmd

Delete Index Files.cmd

 

@echo off

echo Delete Index Files.

echo.


set /a drive=0

set /a exc=0

set /a includes=0

set /a includes_mac=0


vol c:

echo.

vol d:

echo.

vol e:

echo.

vol f:

echo.

vol g:

echo.


echo *Be careful if use on C:.

echo.


set /p drive="Drive Name: "

%drive%:

cd \

echo.

vol

echo.


set /p exc="Start? Y/N: "

echo.


if /i %exc%==n echo Aborting delete index files.

if /i %exc%==n timeout 3

if /i %exc%==n exit


set /p includes="Delete all Desktop.ini files too? Y/N: "

echo.

set /p includes_mac="Delete all macOS index files too? Y/N: "

echo.


del /s /q /f /a:r /a:s /a:h /a:a Thumbs.db

del /s /q /f /a:r /a:s /a:h /a:a *.$data.Zone.Identifier

del /s /q /f /a:r /a:s /a:h /a:a *.$data.Mac_Metadata

rmdir /s /q "System Volume Information"


if /i not %includes%==n del /s /q /f /a:r /a:s /a:h /a:a Desktop.ini


if /i not %includes_mac%==n del /s /q /f /a:r /a:s /a:h /a:a ._*

if /i not %includes_mac%==n del /s /q /f /a:r /a:s /a:h /a:a .com.*

if /i not %includes_mac%==n del /s /q /f /a:r /a:s /a:h /a:a .DS_Store

if /i not %includes_mac%==n rmdir /s /q .fseventsd

if /i not %includes_mac%==n rmdir /s /q .Spotlight-V100

if /i not %includes_mac%==n rmdir /s /q .TemporaryItems

if /i not %includes_mac%==n rmdir /s /q .Trashes


timeout 10


DeleteIndexFiles.cmd

 

 

 

- 피드백 버튼 삭제 레지스트리 키

 

[HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Internet Explorer\Restrictions]
"NoHelpItemSendFeedback"=dword:00000001

 

 

- 피드백 버튼 복구 레지스트리 키

 

[HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Internet Explorer\Restrictions]
"NoHelpItemSendFeedback"=-

 

 

IE11SendFeedbackButton_Reg.zip

 

 

 

- Group Policy Editor가 있는 윈도우의 경우

 

1. cmd: gpedit.msc

 

2. User Configuration > Administrative Templates > Windows Components > Internet Explorer > Browser menus

 

3. Help menu: Remove 'Send Feedback' menu option > Enabled

 

 

블로그 이미지