Skip to content

Releases: v0idOS/Void-OS

v1.0.0 — The Apex Execution Engine

02 May 00:57

Choose a tag to compare

Void OS v1.0.0 — The Apex Execution Engine

First stable public release. Void OS is a modular AME Wizard playbook that rewrites the Windows 11 kernel scheduler, interrupt routing, and memory subsystem at the hardware level — not through generic registry hacks, but through a programmatic engine with WMI-based hardware detection.


🔬 Real Benchmark Numbers

Hardware: Intel Core i5-12450HX / RTX 3050 6GB Mobile / 16GB RAM
Game: The Last of Us Part I — All High + DLSS Quality @ 144Hz
Tools: CapFrameX + LatencyMon

Metric Stock Win 11 Void OS Delta
Avg FPS ~55.0 67.3 +22%
1% Low ~38.0 55.7 +46%
0.1% Low ~24.0 48.3 +100%
Avg DPC Latency ~400μs 47.9μs -88%
Worst DPC Spike >1500μs (dxgkrnl.sys) 629μs (ACPI.sys) -58%

⚙️ What's in the Engine

Latency Stack

  • IRQAffinity.ps1 — GPU interrupts pinned to P-Core 1 (mask 0x02), NVMe + Network to E-Cores (mask 0xF0) via PCI device registry injection. Hardware-gated: only activates on Intel 12th/13th/14th Gen Hybrid CPUs.
  • NDISOptimizer.ps1 — NDIS Receive Side Scaling routed to BaseProcessor 4, MaxProcessors 4 (E-Core cluster). Eliminates network DPC contention on P-Cores.
  • PCIeASPM.ps1 — Disables PCIe Active State Power Management on AC + DC. Kills ACPI.sys polling overhead. DPC spike: 1500μs → 629μs.
  • MMIOWriteCombine.ps1 — Enables USWC write-combining on GPU PCIe BAR. CPU batches VRAM writes in cache-line bursts instead of stalling on each draw call.
  • USBTuning.ps1 — Disables USB Selective Suspend + PowerThrottling globally.

Scheduler & Performance

  • ExtremePerformance.ps1Win32PrioritySeparation dynamically set to 0x28 on Hybrid CPUs (Thread Director safe) or 0x26 on Classic. MSI mode injection on all PCI devices. Spectre/Meltdown mitigation override. BCD timer nuke: disabledynamictick, useplatformtick, tscsyncpolicy Enhanced.
  • MemoryGPU.ps1 — Memory compression disabled on ≥16GB RAM. PCIe ASPM off for dedicated GPU.

Memory

  • DynamicPaging.ps1 — Static 8192MB pagefile enforced on <32GB RAM. Paging fully disabled on ≥32GB RAM. Eliminates hard page fault storms in AAA titles.
  • StandbyCleaner.ps1 — Native NtSetSystemInformation standby memory flush via RtlAdjustPrivilege. No ISLC dependency.

Services

  • SysMain → Manual, DPS → Manual, DiagTrack → Disabled.

🖥️ Void Control Center

Separate repository: github.com/v0idOS/Void-OS---Control-Center

Native WinUI 3 application (Microsoft.WindowsAppSDK, unpackaged, self-contained). Ships as a single 157MB exe — no installer, no .NET runtime required on target system.

The VCC lives in its own repository and is downloaded automatically during Void OS installation — it is not bundled in the .apbx file. The installer fetches the latest release directly from the Control Center repo and deploys it to C:\Windows\VoidDesktop\ with a desktop shortcut, zero manual steps.

  • Overview: Live hardware topology + engine module status (green/red per script) + benchmark comparison panel
  • Performance: IRQ routing, CPU scheduler, latency engine config with live registry readouts
  • Memory & Network: Page file status, Flush Standby, Reset Network
  • Tools: Create Restore Point, View Engine Log, Open VoidDesktop

To install the VCC standalone (without a full Void OS install), download VoidControlCenter.exe from the Control Center releases page.


📦 Release Assets

File Size Description
Void Test.apbx ~2.7 MB AME Wizard playbook — drag into AME Wizard to install

VoidControlCenter.exe is released separately at Void-OS---Control-Center and downloaded automatically during install.

Installation: Download AME Wizard from ameliorated.io, drag Void Test.apbx in, follow the prompts.

⚠️ Install on a clean Windows 11 installation only. Deep kernel changes are made. A system restore point is created automatically before execution.


🔗 Links