Installation > Installing PTC Modeler > Silent Install > Overview of silent install
Overview of silent install
This topic serves as a quick reference to understand the various parameters available in the msiexec command that is used for performing a silent installation.
Prerequisites
Before running any silent installation, ensure you have the following:
Administrator privileges
MSI installer file (PTCModeler<x_x>.msi)
PTC Modeler license information
SQL Server name and instance
SSL certificate (if applicable)
DOORs installation path (if required)
* 
During silent installation on Entra-ID enabled computers, a user-selection prompt appears during the installation process, which requires manual intervention.
Common syntax
msiexec /i <.msi filename> /qn /L*v <log file path> [properties]
/i — Installs the specified MSI package
/qn — Silent mode (no UI)
/L*v — Enables verbose logging
Usage tips
Always the command line as an Administrator
Always use quotation marks (“ “) for the following:
File paths — “C:\ProgramData\...”
Passwords
License information
Keep logs enabled for troubleshooting
Core installation parameters
Parameter
Values
Description
ART_INSTALLATION
“Full”
Installs the full package, all the product features
ART_PRODUCT_NAME
“PTC_Modelerx_x”
Product / Version identifier
ART_SETUP_TYPE
“Standalone”, “Client”, or “Server”
Specifies the installation mode
ART_UPGRADE
“0” or “1”
“0” — Fresh install
“1” — Upgrade
ART_LICENSE
“<License>”
License key or license configuration
ART_DEFAULT_LICENSE_SERVER
“License Server Name”
License Server (for client installation)
Feature installation controls
Parameter
Values
Description
INSTALL_MODEL_EDITOR
“0” or “1”
Installs Model Editor
INSTALL_MODELER_SERVER
“0” or “1”
Installs PTC Modeler Server
ART_CREATE_EXAMPLES
“0” or “1”
Installs the “Examples” repository
ART_CREATE_MODELS
“0” or “1”
Installs the “Models” repository
ADDLOCAL
“Feature 1”, “Feature 2”, ...
Custom feature selection list
Synchronizer (Code generator) options
Parameter
Language
ART_INSTALL_SYNC_IDL
IDL
ART_INSTALL_SYNC_ACS
ACS
ART_INSTALL_SYNC_ADA
ADA
ART_INSTALL_SYNC_C
C
ART_INSTALL_SYNC_C_PLUS
C++
ART_INSTALL_SYNC_C_SHARP
C#
ART_INSTALL_SYNC_JAVA
Java
ART_INSTALL_SYNC_VB
VB
ART_INSTALL_SYNC_SHADOW_TDK
TDK
Values:
“1” — Enable
“0” — Disable
Database configuration
Parameter
Example
Description
IS_SQLSERVER_SERVER
“Server\Instance”
SQL Server instance name
License configuration
Parameter
Value
Description
LIC_TYPE <GUID>
“Local”
License type (local or server-based)
INSTALL_LICENSE_SERVER
“0” or “1”
Install license server (for server installations)
IIS and Web configuration
Parameter
Value
Description
ART_INSTALL_WEB_INTERFACE
“0” or “1”
Installs the Web Interface
ART_INSTALL_MODEL_MANAGER_WEB
“0” or “1”
Installs Model Manager web
IIS_SSL_CERTIFICATE_VALIDATE
“0” or “1”
Enables SSL validation
IIS_SSL_CERTIFICATE
“Certificate Hash”
SSL certificate thumbprint
Password and security
Parameter
Description
ART_REST_SERVICE_USER_PWD <GUID>
Password for REST services
ART_PTC_IM_WSU_PASSWORD1
Winchill integration password
ART_PTC_IM_WSU_PASSWORD2
Confirm password
Integration parameters
Parameter
Description
ART_INSTALL_DOORS
Enable DOORS integration
ART_DOORS_INSTALL_DIR <GUID>
DOORS installation path
Logging and execution
Parameter
Example
Description
/L*v
C:\ProgramData\log.txt
Verbose log file path
/qn
Silent mode (no UI)
Value conventions
Value
Meaning
“1”
Enabled / Yes
“0”
Disabled / No
“Full”
Complete feature install
Command line install example (For reference)
msiexec /i "PTCModeler_10_3.msi" /qn /L*v "C:\ProgramData\install.log" ART_SETUP_TYPE="Client" INSTALL_MODEL_EDITOR="1" INSTALL_MODELER_SERVER="0" IS_SQLSERVER_SERVER="MyServer\SQLEXPRESS"
Was this helpful?