- Go to https://hexed.it/
- Click
Open Filein the top left corner, navigate to instalation folder and selectsublime_text.exe - On the
Search forbar in the left panel, input: 0F B6 51 05 83 F2 01 - Now in the editor, click on the first byte (0F) and start replacing each byte by: C6 41 05 01 B2 00 90
- Finally, in the top left corner again, click on
Save asand replace the old executable file with the newly created one.
Enjoy an Unlimited User License!
Author: Wasula Benjamin
Role: UIUX Designer & Developer
Last Updated: 17TH NOVEMBER, 2025
If u want to use it on windows, just open Powershell as administrator and copy this:
$bytes = [System.IO.File]::ReadAllBytes($file)
$search = [byte[]](0x0F, 0xB6, 0x51, 0x05, 0x83, 0xF2, 0x01)
$replace = [byte[]](0xC6, 0x41, 0x05, 0x01, 0xB2, 0x00, 0x90)
for ($i = 0; $i -le $bytes.Length - $search.Length; $i++) {
$match = $true
for ($j = 0; $j -lt $search.Length; $j++) {
if ($bytes[$i + $j] -ne $search[$j]) { $match = $false; break }
}
if ($match) {
[Array]::Copy($replace, 0, $bytes, $i, $replace.Length)
break
}
}
[System.IO.File]::WriteAllBytes($file, $bytes)