How to fix PUBG stuck on Initializing Screen

Опубликовано: 25 Апрель 2026
на канале: FPSph
8,228
67

How to fix PUBG stuck on Initializing Screen

There are a lot of fix for this game issue but im showing what fixes my problem.

Solutions in the video:
1. Clearing "CohCache" files
2. Clearing "Logs" files
3. Changing "DNS" servers
4. Changing APN for SIM base ISP

Cohcache bat file:
Note:
a. make a new text and copy paste the below command
b. save as ".bat"
-------------------------------------------

@echo off
setlocal

REM Set the path to the CohCache directory
set "CohCachePath=C:\Path\To\CohCache"

REM Check if the directory exists
if exist "%CohCachePath%" (
echo Deleting files in %CohCachePath%...
del /q "%CohCachePath%\*.*"
echo Files deleted.
) else (
echo Directory %CohCachePath% does not exist.
)

endlocal