批處理實現Windows任務欄透明度修改
批處理的實現是在吾愛破解摘取的,感謝原作者的分享:
@echo off :AA echo, choice /c 1234 /m 選項1:設置任務欄透明度,選項2:恢復默認設置,選項3:Win10設置不起效時選擇,選項4:退出批處理 if %errorlevel% equ 4 goto :eof if %errorlevel% equ 3 goto :Super if %errorlevel% equ 2 goto :BACK if %errorlevel% equ 1 goto :start goto :eof :start echo,&set /p "ss=請輸入透明度(0~10)然后回車,0為全透明,10為不透明:" reg add HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v TaskbarAcrylicOpacity /t REG_DWORD /d %ss% /f taskkill /f /im explorer.exe start explorer.exe goto AA :BACK reg delete HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v TaskbarAcrylicOpacity /f taskkill /f /im explorer.exe start explorer.exe goto AA :Super reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v UseOLEDTaskbarTransparency /f taskkill /f /im explorer.exe start explorer.exe goto AA

浙公網安備 33010602011771號