[]
        
(Showing Draft Content)

Perform Silent Installation

A silent installation allows you to install Wyn Enterprise on Windows without user interaction, making it ideal for repeated deployments or automated scripts. Silent mode is done using the /quiet or /q flag, and additional command-line arguments allow customization.

Request Installer

  1. Download the latest Wyn Enterprise installer by requesting a 30-day trial.

  2. Save the .exe installer in a known folder.

Open Command Prompt

  1. Open Command Prompt or Windows Terminal.

  2. Navigate to the folder containing the installer.

Basic Silent Installation

Run any of the following commands:

WynEnterprise-x64-xxx.exe /quiet

or

WynEnterprise-x64-xxx.exe /q

Notes:

  • The command to upgrade Wyn Enterprise is the same.

  • On Windows Server 2008/2012, a restart may be required.

  • Silent installation skips environment checks (unlike GUI installation).

After completion, Wyn Enterprise appears in Control Panel → Installed Programs. Access the portal at:

http://localhost:51980/

Default login:

Username: admin
Password: admin

Command-Line Arguments for Custom Installation

Argument

Description

-p

Optional: Change the default installation directory. By default, it installs under C:\Program Files\WynEnterprise. Example:

WynEnterprise-x64-xxx.exe /q -p "D:\MyInstallPath"

-m

Optional: Specify which components to install. Possible values: Server, DataWorker, ReportWorker, DashboardWorker. Example:

WynEnterprise-x64-xxx.exe /q -m Server,ReportWorker

-d

Optional: Specify a custom database provider. Values: PostgreSQL, SqlServer, MySql, Oracle. Default: built-in database.

Use with the -c option to define the connection string.

-c

Optional: Database connection string for the custom database. Example:

WynEnterprise-x64-xxx.exe /q -d SqlServer -c "Data Source=localhost;Integrated Security=True;"

-i

Optional: Import sample files during silent installation. Default: not imported.

WynEnterprise-x64-xxx.exe /q -i

-f

Optional: Path to sample files ZIP when using -i. Example:

WynEnterprise-x64-xxx.exe /q -i -f "C:\samplefiles.zip"

-b

Optional: IP address of the server (if not installing the Server component). Default: localhost. Example:

WynEnterprise-x64-xxx.exe /q -b 10.32.0.1

-n

Optional: Local IP address for worker components. Default: localhost. Example:

WynEnterprise-x64-xxx.exe /q -b 10.32.0.1 -n 10.32.0.5

-k

Optional: Register license key for Server component. Example:

WynEnterprise-x64-xxx.exe /q -k "xxxx-xxxx-xxxx-xxxx-xxxx-xxxx"

-z

Optional: Create desktop and menu shortcuts. By default, no shortcuts are created. Example:

WynEnterprise-x64-xxx.exe /q -z

-e

Optional: Encrypt the database connection string for security. Example:

WynEnterprise-x64-xxx.exe /q -e

Exit Codes

Exit Code

Description

0

Installation successful and WynService started

1000

Installation successful, WynService start unknown

1001

Installed without built-in database — WynService cannot start

1002

Installed, WynService failed to start

1003

Installed, WynService start error — restart manually

1004

Installed, system restart required before use

1005

Installed, database connection failed — WynService cannot start

1006

Installed, WynService started, license registration failed (invalid key)

1007

Installed, WynService started, license registration failed (online registration failure)

1008

Installed, WynService started, license registration failed (unknown reason)

2001

Unsuccessful: unsupported custom database

2002

Unsuccessful: invalid installation directory

3001

Unsuccessful: unsupported computer environment

Other Code

Unsuccessful: unknown reason


Silent Uninstallation

Basic uninstall:

WynEnterprise-x64-xxx.exe /quiet /uninstall

or

WynEnterprise-x64-xxx.exe /q /uninstall

Uninstall and remove database:

WynEnterprise-x64-xxx.exe /quiet /uninstall -r

or

WynEnterprise-x64-xxx.exe /q /uninstall -r

Note: You can combine other arguments like -log to track uninstallation.