Error and solution - Thafoxes/AkebiWiki GitHub Wiki
Error and solution
I made a similar one over here:
https://github.com/Thafoxes/AkebiWiki/wiki/First-time-setting-akebi#qna
To avoid redundancy and fail to update both place. Please refer the link above XD
Authentication error and solution
The Runtime error 5/139
. Error: Validation check error appears when the system time is set incorrectly in Windows.
https://www.lifewire.com/change-time-windows-11-6823501
Error 4/138 Error: Invalid session Error
Is due to ISP blocking/dns pollution. Required to use VPN/ perform a dns flush.
It may also means that leave the input key too long, session time out. Try login again, if you found that your popup window takes too much time, maybe your ISP is blocking. Use VPN
(Recomended WRAP VPN)
Perform a dns flush using this tutorial below:
Error Cannot find HoYoKProtect.sys driver issues
Use your notepad to open one by one and everysub folder the files that looks weird like svg, png , ini, etc just open every files... Open it with notepad to look the contents.
Your contents inside will look like this:
[GenshinImpact]
Path = C:\Program Files\Genshin Impact\Genshin Impact game\GenshinImpact.exe
Add this:
[Inject]
DisableDriverCheck = true
DisableProtectionCheck = true
So it looks like this:
[GenshinImpact]
Path = C:\Program Files\Genshin Impact\Genshin Impact game\GenshinImpact.exe
[Inject]
DisableDriverCheck = true
DisableProtectionCheck = true
A post guide in Discord server here:
Alternative method for HoYokProtect.sys issue
Automatic search method for those who can not understand how to find cfg.ini correctly
- Open notepad and paste the following code below.
- Save as bat file.
- Run as administrator
- Specify the path to the folder where the akebi is located
- Press Enter
- Wait for it to give you the full path to the cfg.ini file (each file has its own unique name and format).
-# You need to open the found file using a text editor (Notepad, Notepad++, etc.)
@echo off
setlocal
REM Prompt the user for the directory path
set /p directory=Enter the directory path:
REM Check if the directory exists
if not exist "%directory%" (
echo The directory "%directory%" does not exist.
pause
exit /b 1
)
REM Search for files with the entry "[GenshinImpact]" in the first line, excluding exe files
for /r "%directory%" %%f in (*) do (
if /i not "%%~xf"==".exe" (
call :check_first_line "%%f"
)
)
endlocal
pause
exit /b
:check_first_line
setlocal
set "file=%~1"
REM Attempt to open the file and read the first line
set "first_line="
< "%file%" set /p first_line= 2>nul
REM Check if the first line contains the target entry
echo %first_line% | findstr /c:"[GenshinImpact]" >nul
if %errorlevel% equ 0 (
REM Output the file path and the found line
echo File: %file% - cfg.ini
)
endlocal
exit /b