Skip to content
조회 수 5063 추천 수 0 댓글 1
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

내컴퓨터 마우스 오른쪽 메뉴에서 명령어 추가하기

참고 : http://jinmoda.tistory.com/174

         http://almashackingtutorials.blogspot.com/2011/11/adding-more-options-in-right-click.html



바탕화면 내컴퓨터에서 마우스 오른쪽 눌렀을때 나타나는 메뉴에 원하는 명령을 추가하는 레지스트리 입니다. 



 context.rar


필요없는 부분은 삭제하시고 병합하세요.. 


조금만 연구하면 본인이 원하는 명령을 추가할수가 있습니다.


아래내용을 reg 파일로 저장후 병합하거나 첨부파일을 다운받아 병합하세요. 삭제레지파일포함.


필요없는 메뉴는 삭제하시면 됩니다.



Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell]

@="none"


 ; 프로그램 추가 제거

[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\프로그램 추가 제거]


[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\프로그램 추가 제거\command]

@="control appwiz.cpl"


 ; 제어판

[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\제어판]

@="@%windir%\\system32\\shell32.dll,-4161"


[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\제어판\command]

@="rundll32.exe shell32.dll,Control_RunDLL"


 ; 장치관리자

[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\장치관리자]

@="Device Manager"


[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\장치관리자\command]

@="mmc.exe /s devmgmt.msc"


 ; 디스크정리

[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\디스크정리]

@="@%windir%\\system32\\shell32.dll,-22026"


[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\디스크정리\command]

@="cleanmgr.exe"


 ; 서비스관리

[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\서비스관리]

@="@%windir%\\system32\\shell32.dll,-22059"


[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\서비스관리\command]

@="mmc.exe /s services.msc"



I will be using Visual Basic Script (Vbs) to modify the right click context of my computer. Copy the following of code in your favorite text editor (e.g. Notepad++) and save it as anything.vbs. The extension .vbs must be there after you have named you script to make your script work.


*********Code starts from here***********

; Add Control Panel to Right Click Menu of My Computer
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Control Panel\command]
@="rundll32.exe shell32.dll,Control_RunDLL"


; Add Add/Remove Programs to Right Click Menu of My Computer
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Add/Remove Programs\command]
@="control appwiz.cpl"


; Add Device Manager to Right Click Menu of My Computer
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Device Manager\command]
@="mmc.exe %%SYSTEMDRIVE%%\\WINDOWS\\SYSTEM32\\devmgmt.msc"


; Add Registry Editor to Right Click Menu of My Computer
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Registry Editor\command]
@="Regedit.exe"


; Add Services to Right Click Menu of My Computer
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Services]
@=hex(2):53,00,65,00,72,00,76,00,69,00,63,00,65,00,73,00,00,00
"SuppressionPolicy"=dword:4000003c
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Services\command]
@=hex(2):25,00,77,00,69,00,6e,00,64,00,69,00,72,00,25,00,5c,00,73,00,79,00,73, 00,74,00,65,00,6d,00,33,00,32,00,5c,00,6d,00,6d,00,63,00,2e,00,65,00,78,00, 65,00,20,00,2f,00,73,00,20,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52, 00,6f,00,6f,00,74,00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00, 32,00,5c,00,73,00,65,00,72,00,76,00,69,00,63,00,65,00,73,00,2e,00,6d,00,73, 00,63,00,20,00,2f,00,73,00,00,00


; Add LogOff to Right Click Menu of My Computer
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\[Logoff]\command]
@="shutdown -l -f -t 5"


; Add Reboot to Right Click Menu of My Computer
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\[Reboot]\command]
@="shutdown -r -f -t 5"


; Add Shutdown to Right Click Menu of My Computer
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\[Shutdown]\command]
@="shutdown -r -f -t 5"


; Add Microsoft Configurator to Right Click Menu of My Computer
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Microsoft Configurator\command]
@="msconfig.exe"


; Add Sound And Audio Devices to Right Click Menu of My Computer
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Sound And Audio Devices\command]
@="control mmsys.cpl"


; Add Internet Properties to Right Click Menu of My Computer
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Internet Properties\command]
@="control inetcpl.cpl"


*********Code ends here**************

로그인 후 댓글쓰기가 가능합니다.

?

List of Articles
번호 분류 제목 날짜 조회 수
677 Excel 엑셀에서 음수를 0으로 표현하는 방법 2 2012.01.07 13523
676 Excel 엑셀에서 날짜합계 구하는 함수(Sumproduct 함수 이해하기) 2014.12.13 9911
675 컴퓨터잡담 엑셀에서 날짜와 시간 계산하는 법 2 2010.09.20 31668
674 Excel 엑셀에서 "따옴표" 입력하기 2021.07.09 3215
673 컴퓨터잡담 엑셀)문자데이터를 날짜 및 시간으로 변경하는 방법(함수) 2011.10.11 6954
672 Excel 엑셀) 피벗테이블 원본데이터 영역범위 수정방법 1 2 file 2012.03.06 25105
671 Excel 엑셀) 배열 2 2012.02.23 8353
670 Excel 엑셀) 날짜를 요일로 변환하기 2 2012.03.16 19179
669 Excel 엑셀 파일을 utf-8 유니코드로 csv 파일로 저장하기 file 2017.12.22 11391
668 컴퓨터잡담 엑셀 파일 편집기 - 리눅스, 윈도우용(Gnumeric Spreadsheet) 3 2011.11.24 7059
667 Excel 엑셀 지정행 반복인쇄 하는 방법[지정행/지정열] file 2015.12.04 6106
666 Excel 엑셀 주소참조 - Get.Cell(type_num, reference) 3 2012.04.23 14173
665 Excel 엑셀 여러가지 기능 2014.11.10 5011
664 Excel 엑셀 암호변경 제거 방법 file 2016.09.12 6350
663 AutoHotKey 엑셀 셀 복사하기(복사제한된 엑셀등) 1 file 2014.04.01 7804
662 컴퓨터잡담 엑셀 색깔 지정 함수 1 2010.07.28 65610
661 컴퓨터잡담 엑셀 다중조건 구현하기 2010.05.13 17312
660 Excel 엑셀 깨진파일 복구하기 file 2015.11.11 7674
659 컴퓨터잡담 엑셀 VBA) Shell로 외부프로그램 호출 2011.11.07 12710
658 컴퓨터잡담 엑셀 VBA 제어문의 종류 3 2011.10.04 10508
Board Pagination Prev 1 ... 11 12 13 14 15 ... 46 Next
/ 46

http://urin79.com

우린친구블로그

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소