Steam-fix

:: 4. Clear WebView2 cache (fixes blank store/library) echo [4/5] Clearing Steam HTML cache... if exist "%localappdata%\Steam\htmlcache" ( rmdir /s /q "%localappdata%\Steam\htmlcache" >nul 2>&1 )

@echo off title Steam Fix Tool echo ======================================== echo STEAM REPAIR SCRIPT v1.0 echo ======================================== echo. :: 1. Kill all Steam processes echo [1/5] Stopping Steam processes... taskkill /f /im Steam.exe >nul 2>&1 taskkill /f /im steamwebhelper.exe >nul 2>&1 taskkill /f /im GameOverlayUI.exe >nul 2>&1 timeout /t 2 /nobreak >nul steam-fix

:: 3. Reset Steam Client Service echo [3/5] Re-registering Steam Service... sc stop SteamClientService >nul 2>&1 sc delete SteamClientService >nul 2>&1 timeout /t 1 /nobreak >nul start "" /b "%ProgramFiles(x86)%\Steam\bin\steamservice.exe" /regserver &1 taskkill /f /im steamwebhelper.exe &gt