Amaze Network is a high-performance system utility written in C#, designed for deep optimization of the Windows network stack and CPU resource management in real-time. It is specifically engineered for gamers and power users looking to minimize latency (ping) and maximize system responsiveness.
The engine operates across five distinct system layers to ensure peak performance:
- Direct Cache Access (DCA) & NetDMA: Enables direct cache access to reduce CPU overhead during network packet processing.
- RSS (Receive Side Scaling): Enables scaling to distribute network traffic processing across multiple CPU cores.
- Interrupt Moderation: Disables network adapter interrupt moderation globally via PowerShell to ensure instant packet handling.
- Network Throttling Bypass: Sets the
NetworkThrottlingIndexto0xFFFFFFFFto disable Windows' built-in throttling for non-multimedia traffic. - System Responsiveness: Adjusts the system profile to
0%responsiveness to prioritize user tasks over background system services. - QoS DSCP Tagging: Implements Quality of Service (QoS) policies to tag traffic with
DSCP 46(High Priority), ensuring preferred routing.
- Disable Nagle's Algorithm: Modifies
TcpAckFrequencyandTCPNoDelayin the registry to send small packets without delay. - TCP Fast Open (TFO): Enables
Fast Opento speed up the data exchange process during connection establishment. - UDP/TCP RSC Disable: Disables Receive Segment Coalescing to reduce jitter in real-time applications.
The script continuously monitors the foreground window and applies specific optimizations to detected games:
- CPU Affinity: Automatically masks the process to exclude
Core 0, preventing conflicts with system interrupts and OS tasks. - Process Priority: Dynamically elevates the game process priority to
High.
- Auto-Installer: Automatically deploys itself to
Program Files\AmazeGamingif executed from a different directory. - Persistence: Utilizes Windows Task Scheduler (
schtasks) to create a logon task withHIGHESTprivileges. - Tray Integration: Runs a system tray icon for background management, allowing users to toggle the debug console.
- Requirements: .NET Framework and Windows 10/11.
- Permissions: The application requires Administrator privileges to modify registry keys and network configurations; it will automatically prompt for elevation if needed.
- Usage: Simply run the compiled
AmazeNetwork.exe. Upon the first run, it will install itself and start the optimization loop.
-silentβ Launches the application directly to the system tray without showing the console window.
This utility makes significant changes to the Windows Registry and network interface configurations. It is intended for advanced users. Use it at your own risk.