first commit

This commit is contained in:
2026-02-16 22:32:35 +08:00
commit bcdd19df21
13 changed files with 1060 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
@echo off
title Asking for administrator access
mode CON COLS=37 LINES=3
color F0
echo :::::::::::::::::::::::::::::::::::::
echo :: Requesting administrator access ::
echo :::::::::::::::::::::::::::::::::::::
cd /d "%~dp0" && ( if exist "%temp%\getadmin.vbs" del "%temp%\getadmin.vbs" ) && fsutil dirty query %systemdrive% 1>nul 2>nul || ( cmd /u /c echo Set UAC = CreateObject^("Shell.Application"^) : UAC.ShellExecute "cmd.exe", "/k cd ""%~sdp0"" && ""%~s0"" %Apply%", "", "runas", 1 >> "%temp%\getadmin.vbs" && "%temp%\getadmin.vbs" && exit /B )
color
cls
title Applying
call :isAdmin
if %errorlevel% == 0 (
echo Applying effects
regsvr32 "%~dp0ExplorerBlurMica.dll"
echo.
) else (
echo Please run as Administrator
)
echo Restarting explorer
taskkill /F /IM explorer.exe >nul
start explorer.exe
echo .
echo title Success
echo Changes applied successfully
echo You can now close this window, it will close automatically in 5 seconds
timeout /t 5 >nul
exit /b 0
:isAdmin
fsutil dirty query %systemdrive% >nul
exit /b %errorlevel%