Friday, July 4, 2025

Razer Synapse Diskless Launcher

- First, install Razer Synapse, don't install other Razer applications.

- After the installation is completed, go to "C:\Program Files" and then cut the "Razer" folder. Paste the folder into your game disk drive.

- Create new folder, then rename it to Local.Go to %localappdata% , then cut "Razer" folder and paste it into the Local folder we created earlier.

- Go to %ProgramData% , then cut "Razer" folder and paste it inside "Razer" folder directory.

- Create new document inside the Razer directory, then rename it as "Update_Razer_registry.bat". Copy paste the script below into it, save it and run it once :

@echo off
reg export "HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Razer" reg1.reg
reg export "HKEY_LOCAL_MACHINE\SOFTWARE\Razer" reg2.reg
reg export "HKEY_CURRENT_USER\Software\Razer" reg3.reg
copy /Y reg*.reg razer.reg
del reg*.reg
exit

- Create new document  inside the Razer directory again, then rename it as "Razer_launcher.bat". Copy paste the script below into it, save it and run it once. Use this file as Diskless launcher for client :

@echo off
regedit /s razer.reg
mklink /J "C:\Program Files\Razer\" "%~dp0"
mklink /J "C:\ProgramData\Razer\" "Razer"
mklink /J "%localappdata%\Razer\" "Local\Razer"
start "" "C:\Program Files\Razer\RazerAppEngine\RazerAppEngine.exe" --url-params=apps=synapse
exit

Fix TPM Ready For Attestation : False

- First open taskschd.msc.

- Then go to this section Task Scheduler Library - Microsoft - Windows - TPM . Enable these two tasks : Tpm-HASCertRetr and Tpm-Maintenance.

Thursday, June 12, 2025

Fix Shutdown bsod caused by CCU on AMD

- Open regedit , then go to this key :

[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\kpowershutdown]
Change value Start to 4 like below :
"Start"=dword:00000004
- Then go to this key :
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\ACPI\FixedButton\2&daba3ff&0]
Change ConfigFlags value to 20 like below :
"ConfigFlags"=dword:00000020
- Go to this key :
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\kshutdown]
Change "Start" value to 4
"Start"=dword:00000004
- Go to this key :
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\ksafecenter]
Change "Start" value to 4
"Start"=dword:00000004

Wednesday, June 11, 2025

How to prevent FACEIT AC make "Display Card PNP" not working in CCU

- Open super user, then install Faceit AC as usual.

- When the installation completed, uncheck "Launch Faceit AC" ( do not launch Faceit AC ) and click "finished".

- Shutdown and close the super user. Then save the image in new restore poin.

- Boot the client in normal mode , then run Faceit AC until it asks the computer to restart after completing the update. Don't restart it yet.

- Open regedit , then export these two keys of "Faceit AC" and copy them to server game disk :

"[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\FACEITService]"

"[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\FACEIT]"

- Copy "Faceit AC" folder in "C:\Program Files" to Game disk server remotely.

- Open super user again, don't click "Faceit Ac" shorcut. Copy "Faceit AC" folder you backed up earlier to "C:\Program Files\Faceit AC".

- Merge two registry files you exported earlier.

- Shutdown and close super user. Save the restore point, and you're done.

Monday, June 2, 2025

FACEIT AC Launcher

- First install FACE IT AC on client in "super client" mode. 

- Make sure FACEIT AC doesn't run on startup by disabling FACEIT AC at startup tab in task manager.

- Make a batch file,rename it to "Faceit AC launcher.bat" then copy this script below into the file :

@echo off
setlocal

REM Check if "C:\Program Files\FACEIT AC1" exists
if exist "C:\Program Files\FACEIT AC1\" (
    REM If FACEIT AC1 exists, start faceitclient.exe
    start "" "C:\Program Files\FACEIT AC\faceitclient.exe"
) else (
    REM Rename "FACEIT AC" to "FACEIT AC1"
    ren "C:\Program Files\FACEIT AC" "FACEIT AC1"

    REM Copy contents from FACEIT AC to "C:\Program Files\FACEIT AC" folder
    xcopy /S /I "%~dp0" "C:\Program Files\FACEIT AC"

    REM Start faceitclient.exe
    start "" "C:\Program Files\FACEIT AC\faceitclient.exe"
)

endlocal

Saturday, May 17, 2025

Delta Force Garena Diskless Launcher

- Go to %appdata% and cut these two folders : df_garena_launcher and df_garena_launcher_30029605. Paste these folders inside Delta Force directory. 

- Go to %localappdata% and cut this folder : DeltaForceMiniloader. Paste this folder inside Delta Force directory. 

- Create a batch file, and copy paste the following scripts :

@echo off
mklink /J "%appdata%\df_garena_launcher" "%~dp0\df_garena_launcher"
mklink /J "%localappdata%\DeltaForceMiniloader" "%~dp0\DeltaForceMiniloader"
mklink /J "%appdata%\df_garena_launcher_30029605" "%~dp0\df_garena_launcher_30029605"
start "" "%~dp0\launcher\df_garena_launcher.exe"
exit

- Save it as "Delta_Force_launcher.bat". Run it once in the diskless server.

- Use it as launcher for the diskless clients.

Credit to : Fahmi Yufrizal Yusuf

Thursday, April 10, 2025

Fix Desktop Resolution and refresh rate changed everytime Playing game

This is the solution to fix desktop resolution and refresh rate keep changing everytime playing game like Valorant or Apex Legend.

This is for Nvidia Gpu card :

- First open Nvidia control panel and go to Display - Adjust Desktop size and position

- For Scaling  mode : choose Full-Screen.

- For Perform Scaling on : choose GPU.

- Check "Override the scaling mode set by games and programs.

- Klik Apply and Ok.

Sunday, October 15, 2023

Set Chrome Portable as Default Browser for Windows 10

 - To set Portable Chrome as default browser you need to run the following VBscript :

'Registers Google Chrome Portable with Default Programs or Default Apps in Windows
'chromeportable.vbs - created on May 20, 2019 by Ramesh Srinivasan, Winhelponline.com
'v1.1 13-June-2019 - Enclosed file name parameter in double-quotes.
'v1.2 10-Sept-2020 - Fixed ApplicationIcon path. And added other supported URL protocols.
'v1.3 23-July-2022 - Minor bug fixes.

Option Explicit
Dim sAction, sAppPath, sExecPath, objFile, oFSO, sbaseKey, sbaseKey2, ArrKeys, regkey
Dim WshShell : Set WshShell = CreateObject("WScript.Shell")
Dim oFS0 : Set oFSO = CreateObject("Scripting.FileSystemObject")

Set objFile = oFSO.GetFile(WScript.ScriptFullName)
sAppPath = oFSO.GetParentFolderName(objFile)
sExecPath = sAppPath & "\GoogleChromePortable.exe"

Monday, July 3, 2023

Enable Long Paths in Windows 10

 Open regedit, and go to this key :

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem] "LongPathsEnabled"=dword:00000001

Then change the value of "LongPathsEnabled" from 0 to 1. Then reboot your PC.

Tuesday, June 20, 2023

Lost Saga Origin Vfun Launcher

Create batch file inside Vfun folder and copy paste the following script :

@echo off
reg export HKEY_CURRENT_USER\SOFTWARE\Valofe vfun.reg /y
exit

Then save it as "Update registry vfun.bat"

Create another batch file inside Vfun folder and copy paste the following script

@echo off
regedit /s vfun.reg
start "" RegAsm.exe loginSNS.dll /silent
start "" "VFUNLauncher.exe
exit

Then save it as "Vfun_launcher.bat". Use it as Launcher for client.

Wednesday, March 29, 2023