2023年12月2日发(作者:)
右键菜单添加 显示(及不显示)隐藏文件及文件夹
浏览次数:562次悬赏分:50 |
解决时间:2010-11-16 01:06 |
提问者:无人看雨
本人系统 win7旗舰x64版,想在右键菜单添加两个项目,
显示隐藏文件及文件夹
不显示隐藏文件及文件夹
两项,现特请高手指教,如果可能的话,请顺便附上注册表代码以及清楚这两项的代码。。小弟感激不尽,如果能得到圆满解答,必重谢之。。。。
问题补充:
各位,,不好意思,。。我的意思是完整的注册表代码或者cmd执行代码。。。。
如果够完美,追加至100分。。。。
最佳答案
兄弟,你这个问题,我查了很多资料,而且问了很多高人。以下代码条。自己研究下吧。
@echo off
mode con cols=30 lines=4
title 右键菜单添加成功
color 0A
if not exist "%windir%" goto setup
reg delete "HKCRCLSID{00000000-0000-0000-0012}" /f >nul
2>nul
del /f /q "%windir%" >nul 2>nul
echo.&echo 已删除显示/隐藏扩展名及文件
pause>nul
exit
:setup
color 0a
>"%windir%" echo Dim WSHShell
>>"%windir%" echo Set WSHShell =
Object("")
>>"%windir%" echo te
"HKCRCLSID{00000000-0000-0000-0012}InstanceInitPropertyBagCLSID", "{13709620-C279-11CE-A49E-444553540000}", "REG_SZ"
>>"%windir%" echo te
"HKCRCLSID{00000000-0000-0000-0012}InstanceInitPropertyBagmethod", "ShellExecute", "REG_SZ"
>>"%windir%" echo if
d("HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvancedHideFileExt") = 0 then
>>"%windir%" echo te
"HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvancedShowSuperHidden", "0", "REG_DWORD"
>>"%windir%" echo te
"HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvancedHidden", "2", "REG_DWORD"
>>"%windir%" echo te
"HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvancedHideFileExt", "1", "REG_DWORD"
>>"%windir%" echo te
"HKCRCLSID{00000000-0000-0000-0012}InstanceInitPropertyBagcommand", "显示", "REG_SZ"
>>"%windir%" echo ys "{F5}+{F10}e"
>>"%windir%" echo else
>>"%windir%" echo te
"HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvancedShowSuperHidden", "1", "REG_DWORD"
>>"%windir%" echo te
"HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvancedHidden", "1", "REG_DWORD"
>>"%windir%" echo te
"HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvancedHideFileExt", "0", "REG_DWORD"
>>"%windir%" echo te
"HKCRCLSID{00000000-0000-0000-0012}InstanceInitPropertyBagcommand", "隐藏", "REG_SZ"
>>"%windir%" echo ys "{F5}+{F10}e"
>>"%windir%" echo end if
>>"%windir%" echo Set WSHShell = Nothing
>>"%windir%" echo (0)
reg export
"HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced"
"%temp%__.reg" >nul
for /f "tokens=2 delims==" %%. in ('find/i "HideFileExt" "%temp%__.reg"') do
set v=%%~.
del "%temp%__.reg"
set v=%v:~-1%
if %v% equ 0 set vv=隐藏
if %v% equ 1 set vv=显示
>"%temp%_.reg" echo REGEDIT4
>>"%temp%_.reg" echo
[HKEY_CLASSES_ROOTDirectoryBackgroundshellexContextMenuHandlersSuperHidden]
>>"%temp%_.reg" echo @="{00000000-0000-0000-0012}"
>>"%temp%_.reg" echo
[HKEY_CLASSES_ROOTCLSID{00000000-0000-0000-0012}InProcServer32]
>>"%temp%_.reg" echo
@=hex(2):25,53,79,73,74,65,6d,52,6f,6f,74,25,5c,73,79,73,74,65,6d,33,32,5c,73,
>>"%temp%_.reg" echo 68,64,6f,63,76,77,2e,64,6c,6c,00
>>"%temp%_.reg" echo "ThreadingModel"="Apartment"
>>"%temp%_.reg" echo
[HKEY_CLASSES_ROOTCLSID{00000000-0000-0000-0012}Instance]
>>"%temp%_.reg" echo
"CLSID"="{3f454f0e-42ae-4d7c-8ea3-328250d6e272}"
>>"%temp%_.reg" echo
[HKEY_CLASSES_ROOTCLSID{00000000-0000-0000-0012}InstanceInitPropertyBag]
>>"%temp%_.reg" echo "method"="ShellExecute"
>>"%temp%_.reg" echo "Param1"=""
>>"%temp%_.reg" echo
"CLSID"="{13709620-C279-11CE-A49E-444553540000}"
>>"%temp%_.reg" echo "command"="%vv%"
regedit /s "%temp%_.reg"
del /f /q "%temp%_.reg"
echo.&echo 已添加右键 %vv%
pause>nul
exit
发布评论