RedEye ships as a self-contained executable. The installer script handles shell registration, COM type registration, and the scheduled task needed for the elevated service — all in a single step. This page covers system requirements, the installation walkthrough, building from source, and how to uninstall.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/ryzhpolsos/redeye/llms.txt
Use this file to discover all available pages before exploring further.
System requirements
- OS: Windows 10 or Windows 11 (x64)
- Runtime: .NET Framework 4.8 — included by default on Windows 10 May 2019 Update and later
- Architecture: 64-bit only
- Privileges: Administrator rights are required for the installer and uninstaller
.NET Framework 4.8 is pre-installed on most up-to-date Windows 10 and Windows 11 systems. If you are unsure, open Settings → Apps → Optional features and search for ”.NET Framework”.
Installing from a release
Download the latest release
Go to the RedEye Releases page on GitHub and download the
.zip archive from the latest release.Extract the archive
Extract the archive to a permanent folder of your choice — for example,
C:\RedEye. The redeye.exe file must be present in the folder before running the installer.Run install.bat as administrator
Right-click
install.bat and select Run as administrator. The script performs the following actions:- Registers
redeye.exeas the shell for your user account in the Windows registry - Creates a scheduled task named
RedEyeElevatedServicethat starts the elevated service at the highest privilege level - Registers COM types using
RegAsm.exefrom your installed .NET Framework - Sets the
REDEYE_DIRECTORYsystem environment variable to the installation folder
/q flag:Building from source
bin/Release/. From there, follow the same installation steps above using the compiled redeye.exe.
Uninstalling
To remove RedEye and restore Explorer as your shell, rununinstall.bat as administrator from the RedEye installation folder.
The uninstaller reverses every change made during installation:
- Removes the
Shellregistry value from your user’s Winlogon key, which causes Windows to fall back to Explorer - Deletes the
RedEyeElevatedServicescheduled task - Unregisters COM types using
RegAsm.exe /u - Clears the
REDEYE_DIRECTORYsystem environment variable (sets it to an empty string)