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)
- Download the latest installer from Releases
- Run the
.exeinstaller - Follow the setup wizard
- Launch CyberManager
What the Installer Does
- Installs the application
- Creates Start Menu shortcuts
- Creates Desktop shortcut (optional)
- Adds auto-start entry (optional)
Portable ZIP
- Download the portable ZIP from releases
- Extract to any folder
- 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
- Windows Settings → Apps → Installed Apps
- 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%\CyberManagerafter uninstalling.