DEV Community

Izanagi
Izanagi

Posted on

IzanagiOP: a Windows optimizer built on actual registry research

I've been building Windows optimization tools for a few years. Most optimizers I've seen fall into two categories: batch scripts that blindly apply settings from a 2018 Reddit post, or GUI wrappers around the same scripts with a checkbox per setting.

IzanagiOP started as a personal project — a C++ application that systematically addresses every layer of Windows that affects game performance. After using it with a group of FiveM and CS2 players and seeing consistent results, I turned it into a product.

What makes it different

Vendor detection. The app detects your GPU vendor (NVIDIA/AMD/Intel) via CPUID and EnumDisplayDevices. Tweaks that only apply to specific hardware — NVIDIA Low Latency Mode, AMD shader cache cleanup, HAGS behavior — are gated accordingly. HAGS is excluded from Frame Pack because it causes screen flicker on AMD Navi GPUs. Most tools enable it blindly.

Direct WinAPI. The app routes registry changes through the Windows API directly rather than spawning reg.exe child processes. This avoids false-positive antivirus alerts triggered by reg add commands in child processes.

Full revert. Every applied tweak can be undone. The app shows you what's changed and what the original value was.

Precision Packs. Beyond general optimizations, there are packs designed for specific in-game behaviors: Trajectory Pack (sniper/mouse accuracy), Spread Pack (sustained fire CPU consistency), Scatter Pack (network stack for shotgun/spray patterns), HitSync Pack (server-side timing alignment), Audio Pack (latency reduction), Frame Pack (frame pacing and DWM).

Cleaner. 100+ individual cache and temp targets — system caches, browser caches, game launcher caches (Steam, Discord, Epic, Battle.net, EA, Roblox, Valorant logs), development tool caches (npm). All individually selectable.

Numbers from users

  • FiveM: 60/70fps → 120/160fps
  • FiveM: 70/90fps → 140fps
  • Fortnite: 120fps → 300fps, 30ms ping → 13ms ping
  • CS2: +70-80fps
  • General: 120fps → 200fps in various games

Technical stack

C++, ImGui, DirectX 11. Single .exe, no installer, no background services. License system via Discord.

Pricing: €5/month or €10 lifetime. Discord: https://terweb.lt/

Top comments (0)