Monday, March 30, 2020

Windows 10 Network Optimization for CCBoot Diskless

This Optimization can be done before image is created ( Windows 10 still on harddrive as operating system ) and after image is created ( modify Windows 10 image using "Enable super client" feature in CCBoot server). Before we continue, make sure you have installed CCBoot client. Then use PnP tool to collect local NIC and merge the collected NIC. After that, follow these steps :

1. First, check PCI value of the ethernet using device manager. Open device manager, then go to "Network adapter". Right click on the ethernet then choose properties, then click on Details tab. Change Property to Device instance path, then in Value box you will see the PCI value of the ethernet. Take note of the value, in the picture below the important thing of the value is PCI\VEN_10EC&DEV_8168 and REV_15.

Thursday, March 26, 2020

Routing Discord Connection with Mikrotik

/ip firewall mangle
add chain=prerouting src-address=192.168.1.0/24 dst-address=!192.168.0.0/16 protocol=udp dst-port=50000-65535 dscp=40 in-interface=LAN action=mark-connection new-connection-mark="Discord_Conn"

Monday, March 16, 2020

Routing PUBG Steam Connection using Mikrotik ( 2020 )

/ip firewall address-list
add address=119.81.0.0/16 list=pubgserver

/ip firewall mangle
add chain=prerouting src-address=192.168.1.0/24 protocol=udp dst-port=!1-1023,3128,3389,3478-3481,5353,5938,8080,8001,8291,9987,30033 in-interface=LAN dst-address-list=pubgserver action=mark-connection new-connection-mark="GAME CONN" comment="Pubg Steam"

Sunday, March 15, 2020

Skipping DirectX and VCRedist Installation for Dota and PUBG Steam

Dota and Pubg Steam always force you to install directx and vcredist eventhough you have installed the newest version of them ( Directx and vcredist ). To skip this bothering installation, you can change windows registry. But make sure you have installed the newest version of directx and vcredist ( from 2005 till 2019 ).

Below is the registry of Valve that will skip directx and vcredist installation for Windows 64-bit. Open notepad and copy them into it , then save it as "skipsteam.reg" :

Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Valve\Steam\Apps\CommonRedist]
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Valve\Steam\Apps\CommonRedist\DirectX]
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Valve\Steam\Apps\CommonRedist\DirectX\Jun2010] "dxsetup"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Valve\Steam\Apps\CommonRedist\vcredist]
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Valve\Steam\Apps\CommonRedist\vcredist\2010]
"x86"=dword:00000001
"x64"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Valve\Steam\Apps\CommonRedist\vcredist\2012]
"x86 Update 4"=dword:00000001
"x64 Update 4"=dword:00000001

Friday, March 13, 2020

COD Warzone Diskless Launcher

1. First, make a folder and rename it to "ProgramData" inside Battle.net installation directory.













2. Then, cut these folders "Battle.net", "Blizzard Entertainment", "Electronic Arts" from "C:\ProgramData" and paste them inside "Battle.net\ProgramData" folder that was created before.









Thursday, March 5, 2020

Update Trusted Root Certificates in Windows 10/8.1/7

If you experiencing ssl error on chrome or firefox, or you have trouble to log in to game like rainbow six (uplay) or discord or other games that use ssl to log in to their game. Here's how you fix it :

- Update your windows certificates. You can update windows certificates by downloading this certificates file from microsoft website ( updated twice a month ) : http://ctldl.windowsupdate.com/msdownload/update/v3/static/trustedr/en/authrootstl.cab . Just extract the cab file and right click on authrool.stl, then choose install.

- If you don't have option to install CTL, run command prompt as administrator then use cd command to go to folder where authroot.stl located. Then type these commands :

certutil -addstore -f root authroot.stl

- You can also download the certificates package file from this link : https://drive.google.com/drive/folders/15H7gXs7sRE5R0YNbLu7jXlOxhqOx4v7X?usp=sharing . This file was updated on 05 March 2020.

- You can also download and install the list of the revoked ( disallowed ) certificates that have been remove from root certificate program. To do it, download this file : http://ctldl.windowsupdate.com/msdownload/update/v3/static/trustedr/en/disallowedcertstl.cab . Unpack the file and add to the Untrusted Certificates section using this command :

certutil -addstore -f  disallowed disallowedcert.stl

Source : http://woshub.com/updating-trusted-root-certificates-in-windows-10/

Tuesday, March 3, 2020

FiveM Sysprep Error Fix

- First, you need to download volume id changer like Volumeid or hwid changer . Then use them to change your volume ids, after that dont' reboot yet.

- Second, open regedit and change a string value in this registry key  :

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\IDConfigDB\Hardware Profiles\0001

HwProfileGuid = You can only change maximum the last 4 characters of this string value.

- Then go to second key :

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Cryptography

MachineGuid = .Try to change the last one character first, if it doesn't work try to change the last 2 characters.




- Close regedit then reboot your pc, after that you can play fivem again.