Skip to content
← Documentación

Installation & Setup

Installation & Setup

This guide covers installing CyberManager, building from source, and running the application.


System Requirements

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

Installation Methods

Installer (Recommended)

  1. Download the latest installer from Releases
  2. Run the .exe installer
  3. Follow the setup wizard
  4. Launch CyberManager

What the Installer Does

  • Installs the application
  • Creates Start Menu shortcuts
  • Creates Desktop shortcut (optional)
  • Adds auto-start entry (optional)

Portable ZIP

  1. Download the portable ZIP from releases
  2. Extract to any folder
  3. Run CyberManager.UI.exe

Building from Source

Prerequisites

Tool Version
.NET 10 SDK Latest

Build

# Build the solution
dotnet build

# Run the application
dotnet run --project src/CyberManager.UI/CyberManager.UI.csproj

Publish

# Publish self-contained for x64
dotnet publish src/CyberManager.UI/CyberManager.UI.csproj -c Release -r win-x64 --self-contained true -o ./publish-win64

Create Installer

Compile the Inno Setup script:

iscc CyberManager.iss

Auto-Start

CyberManager can launch automatically when you sign in:

Enable/Disable

  • Settings → General → Start with Windows
  • Or: Windows Settings → Apps → Startup → Toggle CyberManager

Start Minimized

  • Settings → General → Start Minimized
  • App starts in system tray

Uninstallation

Standard Uninstall

  1. Windows Settings → Apps → Installed Apps
  2. Find CyberManager → Click Uninstall

What Gets Removed

  • Program files
  • Start Menu shortcuts
  • Auto-start entry

What Is Kept

  • Settings (in %ProgramData%\CyberManager)

⚠️ To remove all data, manually delete %ProgramData%\CyberManager after uninstalling.