:: 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
:: 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 ) steam-fix
:: 2. Clear download cache (corrupt manifests) echo [2/5] Clearing download cache... if exist "%ProgramFiles(x86)%\Steam\depotcache" ( del /f /q "%ProgramFiles(x86)%\Steam\depotcache*. " >nul 2>&1 ) if exist "%ProgramFiles(x86)%\Steam\downloading" ( del /f /q "%ProgramFiles(x86)%\Steam\downloading*. " >nul 2>&1 ) &1 sc delete SteamClientService >