Installation Guide
This guide will walk you through installing eSIM Manager on your Windows system.
Prerequisites
Before installing eSIM Manager, ensure your system meets the following requirements:
- Windows 10 Pro (version 1809 or later) or Windows 11 Pro
- .NET 8 Runtime (will be installed automatically if not present)
- Administrator privileges for initial installation
- 200 MB of available disk space
Installation Methods
Method 1: Automated Installation (Recommended)
- Download the latest release from GitHub Releases
- Extract the downloaded archive
- Right-click on
setup-and-build.ps1 in the scripts folder
- Select “Run with PowerShell”
- Follow the on-screen instructions
The script will:
- Verify .NET SDK installation
- Download and restore dependencies
- Build the application
- Install to your local application directory
- Create a desktop shortcut
Method 2: Manual Installation
- Ensure .NET 8 SDK is installed:
- Clone or download the repository:
git clone https://github.com/nexorasim/esim-manager.git
cd esim-manager
- Restore dependencies:
- Build the application:
dotnet build --configuration Release
- Run the application:
dotnet run --project ESimManager/ESimManager.csproj
Method 3: Installer Package (Coming Soon)
A signed Windows installer (.exe) will be available for download from the releases page.
Post-Installation
After installation:
- Launch eSIM Manager from the desktop shortcut or Start Menu
- The application will perform initial setup
- Configure your connection preferences in Settings
- You’re ready to start managing eSIM profiles!
Updating
To update to a newer version:
- Download the latest release
- Run the installation script again
- The old version will be automatically replaced
Uninstallation
To uninstall eSIM Manager:
- Delete the application folder from
%LOCALAPPDATA%\Programs\ESimManager
- Remove the desktop shortcut
- (Optional) Clear application data from
%APPDATA%\ESimManager
Troubleshooting Installation
If you encounter issues during installation:
- Missing .NET SDK: Download from https://dotnet.microsoft.com/download
- Permission Errors: Run PowerShell as Administrator
- Build Failures: Ensure all dependencies are restored with
dotnet restore
For more help, see the Troubleshooting Guide.