파일 경로 복사 컨텍스트 메뉴
- Bat
- 2022. 2. 23.
마우스 오른쪽 버튼 추가 메뉴 - 폴더 및 파일 경로 복사하기
@echo off&pushd "%~dp0"&Title 경로 복사&mode 50,5&color 1f
echo.
echo.
echo 경로 복사 컨텍스트 메뉴...
echo.
echo [Y]추가 [N]제거
choice /c YN >nul
if %errorlevel%==1 goto add
if %errorlevel%==2 goto del
:add
reg.exe add "HKEY_CURRENT_USER\SOFTWARE\Classes\*\shell\경로 복사" /v "Icon" /d "shell32.dll,133" /f
reg.exe add "HKEY_CURRENT_USER\SOFTWARE\Classes\*\shell\경로 복사\Command" /v "" /d "cmd.exe /e:on /d /s /c \"for %%%%a in (\"%%1\") do @(set /p \"=%%%%~a\")^<nul ^| clip\"" /f
exit
:del
reg.exe delete "HKEY_CURRENT_USER\Software\Classes\*\shell\경로 복사" /f@echo off&pushd "%~dp0"&Title 경로 복사&mode 50,5&color 1f
echo.
echo.
echo 경로 복사 컨텍스트 메뉴...
echo.
echo [Y]추가 [N]제거
choice /c YN >nul
if %errorlevel%==1 goto add
if %errorlevel%==2 goto del
cls
exit
:add
reg.exe add "HKEY_CLASSES_ROOT\*\shell\경로 복사" /v "Icon" /d "shell32.dll,133" /f
reg.exe add "HKEY_CLASSES_ROOT\*\shell\경로 복사\Command" /v "" /d "cmd.exe /e:on /d /s /c \"for %%%%a in (\"%%1\") do @(set /p \"=%%%%~a\")^<nul ^| clip\"" /f
reg.exe add "HKEY_CLASSES_ROOT\Directory\shell\경로 복사" /v "Icon" /d "shell32.dll,133" /f
reg.exe add "HKEY_CLASSES_ROOT\Directory\shell\경로 복사\Command" /v "" /d "cmd.exe /e:on /d /s /c \"for %%%%a in (\"%%1\") do @(set /p \"=%%%%~a\")^<nul ^| clip\"" /f
exit
:del
reg.exe delete "HKEY_CLASSES_ROOT\*\shell\경로 복사" /f
reg.exe delete "HKEY_CLASSES_ROOT\Directory\shell\경로 복사" /f
exit
다운로드:
'Bat' 카테고리의 다른 글
배치파일 ini 읽기 및 수정 (0) | 2022.08.04 |
---|---|
레지스트리값을 배치파일로 변환하는 프로그램 (0) | 2022.02.24 |
윈도우 콘솔 명령어 (0) | 2022.02.22 |
Gdrive 사용법 (0) | 2022.02.12 |
반디집 커맨드 라인 파라미터 (0) | 2021.08.30 |