2023年12月2日发(作者:)

@echo off

mode con cols=41 lines=4

title 右键菜单 显示/隐藏扩展名及文件

color 0b

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