-
Notifications
You must be signed in to change notification settings - Fork 0
Installation & Setup
CyberGems edited this page Aug 30, 2026
·
1 revision
This guide covers installing CyberManager, building from source, and running the application.
| Requirement | Minimum |
|---|---|
| OS | Windows 10 (64-bit) or later |
| Architecture | x64 or ARM64 |
| Runtime | .NET 10 (included in installer) |
| Disk space | ~100 MB |
| RAM | 2 GB |
- Download the latest installer from Releases
- Run the
.exeinstaller - Follow the setup wizard
- Launch CyberManager
- Installs the application
- Creates Start Menu shortcuts
- Creates Desktop shortcut (optional)
- Adds auto-start entry (optional)
- Download the portable ZIP from releases
- Extract to any folder
- Run
CyberManager.UI.exe
| Tool | Version |
|---|---|
| .NET 10 SDK | Latest |
# Build the solution
dotnet build
# Run the application
dotnet run --project src/CyberManager.UI/CyberManager.UI.csproj# Publish self-contained for x64
dotnet publish src/CyberManager.UI/CyberManager.UI.csproj -c Release -r win-x64 --self-contained true -o ./publish-win64Compile the Inno Setup script:
iscc CyberManager.issCyberManager can launch automatically when you sign in:
- Settings β General β Start with Windows
- Or: Windows Settings β Apps β Startup β Toggle CyberManager
- Settings β General β Start Minimized
- App starts in system tray
- Windows Settings β Apps β Installed Apps
- Find CyberManager β Click Uninstall
- Program files
- Start Menu shortcuts
- Auto-start entry
- Settings (in
%ProgramData%\CyberManager)
β οΈ To remove all data, manually delete%ProgramData%\CyberManagerafter uninstalling.