A dark Electron app for launching executables with full control over elevation, parent process identity, and window metadata.
// what it does
Three launch modes, process tracking, spoofing tools, and a clean log — all in a single borderless window.
__COMPAT_LAYER=RunAsInvoker in a temporary batch file, launching the exe without triggering a UAC prompt regardless of its manifest.CreateProcess with PROC_THREAD_ATTRIBUTE_PARENT_PROCESS via inline C# to make the process appear as a child of explorer.exe.SetWindowText via user32.dll P/Invoke to rename any tracked process's window title at runtime.// launch methods
.bat file with SET __COMPAT_LAYER=RunAsInvoker and launches via cmd.exe. Bypasses UAC elevation prompts even on manifested executables.spawn() with no elevation. Uses the current user's token. Falls back with a clear error message if the exe requires elevation.STARTUPINFOEX and UpdateProcThreadAttribute. Makes the child process appear to belong to the shell.Download the prebuilt installer for Windows. Supports drag & drop, recent files, and three independent launch methods out of the box.
Download// windows only · electron · portable