-
-
Couldn't load subscription status.
- Fork 32
Installation Guide
Servy is available in two versions to support different Windows environments, ensuring maximum compatibility:
- .NET 8.0+ version:
servy-x.x-x64-installer.exe - .NET Framework 4.8 version:
servy-x.x-net48-x64-installer.exe
Servy has been reviewed by Microsoft Security Intelligence and is confirmed safe. It performs only standard installation tasks and does not contain malware, adware, or unwanted software. Servy passes VirusTotal scans and is published in the Windows Package Manager (WinGet), Chocolatey, and Scoop. You can safely install it from GitHub, WinGet, Chocolatey, or Scoop.
- Recommended for modern systems and includes the latest features and performance enhancements.
- Published as a self-contained executable and does not require installing the .NET 8.0+ Desktop Runtime separately.
- Supported OS: Windows 10, 11, or Windows Server (x64).
- For older systems that require .NET Framework support.
- Supported OS: Windows 7, 8, 10, 11, or Windows Server (x64).
- Requires installation of the .NET Framework 4.8 Runtime.
Administrator privileges are required to install and manage Windows services.
You have two options to install Servy. Download and install manually or use a package manager such as WinGet, Chocolatey, or Scoop.
Make sure you have WinGet, Chocolatey, or Scoop installed.
Run one of the following commands as administrator from Command Prompt or PowerShell:
WinGet
winget install servyChocolatey
choco install -y servyScoop
scoop bucket add extras
scoop install servy
- Download the latest release.
- Run the installer (you will be prompted for admin rights).
- Launch Servy from the Start Menu or desktop shortcut.
You can install Servy silently (without any UI) from an administrator command prompt using the following commands:
# For .NET 8.0+
.\servy-1.9-x64-installer.exe /VERYSILENT /NORESTART /SUPPRESSMSGBOXES /SP- /CLOSEAPPLICATIONS /NOCANCEL
# For .NET Framework 4.8
.\servy-1.9-net48-x64-installer.exe /VERYSILENT /NORESTART /SUPPRESSMSGBOXES /SP- /CLOSEAPPLICATIONS /NOCANCELUsing PowerShell:
# For .NET 8.0
Start-Process -FilePath ".\servy-1.9-x64-installer.exe" -ArgumentList '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- /CLOSEAPPLICATIONS /NOCANCEL' -Verb RunAs -Wait
# For .NET Framework 4.8
Start-Process -FilePath ".\servy-1.9-net48-x64-installer.exe" -ArgumentList '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- /CLOSEAPPLICATIONS /NOCANCEL' -Verb RunAs -WaitYou need to wait a little while for Servy to finish installing.
If you face any issues, enable logging by adding the following option:
/LOG="servy-install.log"Switches explained:
| Switch | Description |
|---|---|
/VERYSILENT |
Installs completely silently with no wizard or progress windows. |
/NORESTART |
Prevents automatic system restart after installation. |
/SUPPRESSMSGBOXES |
Suppresses all message boxes, including errors, during installation. |
/SP- |
Disables the “This will install...” startup prompt. |
/CLOSEAPPLICATIONS |
Asks running apps to close if they block files. |
/NOCANCEL |
Prevents the user from canceling the installation. |
You can uninstall Servy silently (without any UI) from an administrator command prompt using the following command (PowerShell):
# For .NET 8.0+ and .NET Framework 4.8
& "C:\Program Files\Servy\unins000.exe" /VERYSILENT /NORESTART /SUPPRESSMSGBOXESTo ensure smooth operation of the Servy Windows services, it is recommended to add the following folders to your Microsoft Defender or third-party antivirus exclusion list:
C:\ProgramData\Servy
C:\Program Files\Servy
This prevents antivirus software from interfering with the execution of service binaries managed by Servy.
Copyright © Akram El Assas. All rights reserved.
- Home
- Overview
- Installation Guide
- Usage
- Servy Manager
- Servy CLI
- Servy PowerShell Module
- Servy Automation & CI/CD
- Integration with Monitoring Tools
- Service Event Notifications
- Export/Import Services
- Pre‐Launch & Post‐Launch Actions
- Service Dependencies
- Monitoring & Health Checks
- Logging & Log Rotation
- Examples & Recipes
- Comparison with Alternatives
- Security
- Architecture
- Building from Source
- Troubleshooting
- FAQ