바탕화면 아이콘 표시 방법을 2가지 소개해 드리겠습니다.

 

첫 번째 방법

 

바탕화면 빈 공간 마우스 오른쪽 클릭 ->  개인설정

-> 테마 -> 바탕 화면 아이콘 설정

->표시하고 싶은 바탕화면 아이콘 선택 후 확인 누르기

 

 

 

두 번째 방법

레지스트리 수정 regedit

* 레지스트리 수정은 주의를 요합니다.

 

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel

{20D04FE0-3AEA-1069-A2D8-08002B30309D} 내 PC
{5399E694-6CE5-4D6C-8FCE-1D8870FDCBA0} 제어판
{645FF040-5081-101B-9F08-00AA002F954E} 휴지통
{F02C1A0D-BE21-4350-88B0-7367FC96EF3C} 네트워크
{59031a47-3f72-44a7-89c5-5595fe6b30ee} 내 문서

 

참고 사이트

https://sosohanbox.tistory.com/305

 

[Windows] 레지스트리 편집기로 바탕화면 아이콘 설정 넣기

유지보수를 하게 되면 윈도우 설치 시 내 PC, 네트워크, 휴지통 등 꺼내놓은 상태로 있어야 되는 경우가 많습니다. 하지만 윈도우 기본 설치 시 휴지통만 있는 경우가 기본 설치 옵션입니다. 설치

sosohanbox.tistory.com

 

위 레지스트리를 가지고 배치 파일을 만들 수 있습니다.

 

 

reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" /v "{20D04FE0-3AEA-1069-A2D8-08002B30309D}" /t REG_DWORD /d "0" /f

reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" /v "{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}" /t REG_DWORD /d "0" /f

reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" /v "{5399E694-6CE5-4D6C-8FCE-1D8870FDCBA0}" /t REG_DWORD /d "0" /f

@echo off

taskkill /fi "imagename eq explorer.exe" /f
     CD /d %userprofile%\AppData\Local
     ::DEL IconCache.db /a
     START explorer.exe

pause

 

메모장 열기

-> 위 내용 붙여 넣기

-> 상단 메뉴 -> 파일 -> 저장 또는 다른이름으로 저장

-> 파일 형식 : 모든파일 선택

-> 파일 이름 : 사용자 정의 파일 이름.bat

-> 저장

 

참고 사이트

https://stackoverflow.com/questions/4943021/refresh-desktop-using-batch

 

refresh desktop using batch

I need to refresh the desktop ussing batch is this possible? I have found the following VBscript that refreshes the containing window however, the desktop needs to be refreahed and its not the

stackoverflow.com

 

★ 어느 배치 파일이건 안에 내용을 잘 확인 후 실행 하는 습관이 필요합니다.

바탕화면아이콘(내PC,네트워크,제어판).bat
0.00MB

반응형

'desktop > batch' 카테고리의 다른 글

batch if문, 비교 조건  (0) 2024.06.12
배치파일 코드 관리자 권한으로 CMD 열기  (1) 2024.06.11

+ Recent posts