이번 업데이트에 오래된 셰이더를 자동으로 삭제하는 패치를 했다고 하는데
아마 버벅이시는 분들은 기존 셰이더 때문인거로 알고있습니다. 저도 그랬구요
게임이 갑자기 심하게 버벅이거나 팅김이 심할때 쓰시면 됩니다.
PC상의 오래된 캐쉬를 삭제해줍니다.
아래 내용을 복사 하시고 메모장을 여신다음 붙여넣기 하시고
파일명은 마음대로, 확장자명을 BAT로 저장하시면 됩니다.(ex : cache.bat)
저장하시고 실행하시면 캐쉬폴더 삭제해주고 재부팅 확인하는데 y 눌러주시고 pc 재부팅해주시면 됩니다.
그러면 보더랜드 켜시면 아마 맨처음에 실행했을때 처럼
메인메뉴 진입 전 셰이더 다시 만드는 조금 긴시간이 지나고 게임 정상으로 잘되실겁니다.
이줄 아래부터 드래그---------------------
@echo off
:: ======================================
:: Advanced System & NVIDIA Cache Cleanup
:: ======================================
echo.
echo ---- PREP: Closing NVIDIA/related processes that may lock cache files ----
:: Core NVIDIA containers / UI
taskkill /im nvcontainer.exe /f
taskkill /im nvcplui.exe /f
:: GeForce Experience + Overlay / ShadowPlay
taskkill /im NVIDIA GeForce Experience.exe /f
taskkill /im NVIDIA Share.exe /f
taskkill /im NVIDIA Share.exe /f
taskkill /im NVIDIA ShadowPlay Helper.exe /f
taskkill /im NVIDIA Web Helper.exe /f
:: NVIDIA Camera / Broadcast / RTX Video
taskkill /im NvCameraContainer.exe /f
taskkill /im NvCameraService.exe /f
taskkill /im NvBroadcast.Container.exe /f
taskkill /im NvBroadcast.exe /f
taskkill /im NvRTX.exe /f
taskkill /im NvVideoEngineService.exe /f
:: Misc helpers that sometimes hold files
taskkill /im nvsphelper64.exe /f
taskkill /im nvtray.exe /f
taskkill /im nvtelemetrycontainer.exe /f
echo.
echo ---- Stopping common NVIDIA services (names may vary; errors are OK) ----
sc stop "NVIDIA LocalSystem Container"
sc stop "NVIDIA NetworkService Container"
sc stop "NVIDIA Telemetry Container"
sc stop "NvContainerLocalSystem"
sc stop "NvContainerNetworkService"
sc stop "NvTelemetryContainer"
:: -------------------------------
:: System temporary files
:: -------------------------------
echo.
echo Cleaning system temporary files...
del /s /f /q "%TEMP%\*.*"
rd /s /q "%TEMP%"
md "%TEMP%"
echo.
echo Cleaning Windows Temp folder...
del /s /f /q "C:\Windows\Temp\*.*"
rd /s /q "C:\Windows\Temp"
md "C:\Windows\Temp"
echo.
echo Cleaning Prefetch files...
del /s /f /q "C:\Windows\Prefetch\*.*"
echo.
echo Cleaning Recycle Bin...
rd /s /q C:\$Recycle.Bin
:: -------------------------------
:: NVIDIA Caches
:: -------------------------------
echo.
echo Cleaning NVIDIA DXCache...
rd /s /q "%LOCALAPPDATA%\NVIDIA\DXCache"
echo.
echo Cleaning NVIDIA GLCache...
rd /s /q "%LOCALAPPDATA%\NVIDIA\GLCache"
echo.
echo Cleaning NVIDIA ComputeCache...
rd /s /q "%LOCALAPPDATA%\NVIDIA\ComputeCache"
echo.
echo Cleaning NVIDIA Shader Cache (LocalAppData)...
rd /s /q "%LOCALAPPDATA%\NVIDIA Corporation\NV_Cache"
echo.
echo Cleaning NVIDIA Shader Cache (ProgramData)...
rd /s /q "C:\ProgramData\NVIDIA Corporation\NV_Cache"
:: -------------------------------
:: Windows global DirectX Shader Cache
:: -------------------------------
echo.
echo Cleaning Windows DirectX Shader Cache...
del /s /f /q "%LOCALAPPDATA%\D3DSCache\*.*"
rd /s /q "%LOCALAPPDATA%\D3DSCache"
:: -------------------------------
:: Unreal Engine / UE5 caches
:: -------------------------------
echo.
echo Cleaning Unreal Engine derived data caches (if present)...
rd /s /q "%LOCALAPPDATA%\UnrealEngine\Common\DerivedDataCache"
rd /s /q "%LOCALAPPDATA%\UnrealEngine\ShaderCache"
rd /s /q "%USERPROFILE%\AppData\Local\%USERNAME%\Saved\DerivedDataCache"
:: -------------------------------
:: Final step
:: -------------------------------
echo.
echo Flushing DNS cache...
ipconfig /flushdns
echo.
echo All caches cleared successfully!
:: Reboot prompt
echo.
choice /m "Reboot now to unlock any remaining cache files?"
if errorlevel 1 (
shutdown /r /t 3
)
pause
윗부분 pause 까지 복사후 붙여넣기---------------------
(IP보기클릭)118.39.***.***