Silent installation of DPT products using command line
Below, we describe the use of options to run the install in silent mode using command line.
It is advised to first run the installer in interactive mode on one machine, that would generate a script containing the chosen options, and then install in silent mode on other machines using this generated script.
|
Install of Prerequisites
Exe -l shortLang -log "logfile"
Exe:
- DPT_TD_Prerequisites.exe for ThinkDesign
- DPT_TT_Prerequisites.exe for ThinkPLM
- DPT_Licensing_Prerequisites.exe for standalone Licensing
shortLang:
- E for English
- I for Italian
- F for French
- G for German
- J for Japanese
- K for Korean
- C for Chinese
- L for Slovenian
Example:
- DPT_TD_Prerequisites.exe -l E -log "C:\prerequisites.log"
Install of Main product
For English and Japanese
msiexec.exe /i "msifile_version_isoLang.msi" DPT_ACCEPTEULA=true DPT_ACCEPTEULA_DETAIL_1=true DPT_ACCEPTEULA_DETAIL_2=true DPT_ACCEPTEULA_DETAIL_3=true DPT_CUSTOMERACCOUNTID=yourcustomeraccountid /l*v "logfile"
isoLang:
- en-US for English
- ja-JP for Japanese
msifile:
- DPT_TD for ThinkDesign
- DPT_TT for ThinkPLM
- DPT_Licensing for ThinkDesign
- DPT_TDTools for ThinkDesign TDTools
Example for ThinkDesign version 2019_1_20110:
- For English: msiexec.exe /i "DPT_TD_2019_1_20110_en-US.msi" DPT_ACCEPTEULA=true DPT_ACCEPTEULA_DETAIL_1=true DPT_ACCEPTEULA_DETAIL_2=true DPT_ACCEPTEULA_DETAIL_3=true DPT_CUSTOMERACCOUNTID=yourcustomeraccountid /l*v "C:\mainMsi.log" /quiet
- For Japanese: msiexec.exe /i "DPT_TD_2019_1_20110_ja-JP.msi" DPT_ACCEPTEULA=true DPT_ACCEPTEULA_DETAIL_1=true DPT_ACCEPTEULA_DETAIL_2=true DPT_ACCEPTEULA_DETAIL_3=true DPT_CUSTOMERACCOUNTID=yourcustomeraccountid /l*v "C:\mainMsi.log" /quiet
For other languages
msiexec.exe /i "msifile_version_en-US.msi" TRANSFORMS="msifile_version_langMst.mst" DPT_ACCEPTEULA=true DPT_ACCEPTEULA_DETAIL_1=true DPT_ACCEPTEULA_DETAIL_2=true DPT_ACCEPTEULA_DETAIL_3=true DPT_CUSTOMERACCOUNTID=yourcustomeraccountid /l*v "logfile"
langMst:
- it-IT for Italian
- fr-FR for French
- de-DE for German
- ko-KR for Korean
- zh-CN for Chinese
- sl-SI for Slovenian
msifile:
- DPT_TD for ThinkDesign
- DPT_TT for ThinkPLM
- DPT_Licensing for ThinkDesign
- DPT_TDTools for ThinkDesign TDTools
Example for ThinkDesign version 2019_1_20110 in Italian:
- msiexec.exe /i "DPT_TD_2019_1_20110_en-US.msi" TRANSFORMS="DPT_TD_2019_1_20110_it-IT.mst" DPT_ACCEPTEULA=true DPT_ACCEPTEULA_DETAIL_1=true DPT_ACCEPTEULA_DETAIL_2=true DPT_ACCEPTEULA_DETAIL_3=true DPT_CUSTOMERACCOUNTID=yourcustomeraccountid /l*v "C:\mainMsi.log" /quiet
Install of Documentation
msiexec.exe /i "msifile_version_isoLang.msi" DPT_ACCEPTEULA=true DPT_ACCEPTEULA_DETAIL_1=true DPT_ACCEPTEULA_DETAIL_2=true DPT_ACCEPTEULA_DETAIL_3=true DPT_CUSTOMERACCOUNTID=yourcustomeraccountid /l*v "logfile"
msifile:
- DPT_TDDoc for ThinkDesign documentation
- DPT_TTDoc for ThinkPLM documentation
isoLang:
- en-US for English
- it-IT for Italian
- fr-FR for French
- de-DE for German
- ja-JP for Japanese
- ko-KR for Korean
- zh-CN for Chinese
- sl-SI for Slovenian
Example for ThinkDesign documentation version 2019_1_20110 in English:
- msiexec.exe /i "DPT_TDDoc_2019_1_20110_en-US.msi" DPT_ACCEPTEULA=true DPT_ACCEPTEULA_DETAIL_1=true DPT_ACCEPTEULA_DETAIL_2=true DPT_ACCEPTEULA_DETAIL_3=true DPT_CUSTOMERACCOUNTID=yourcustomeraccountid /l*v "C:\docMsi.log" /quiet
Important Remark
For all Msi, 2 options can be added for:
- The installation directory: INSTALLDIR="installpath"
- The installation options: DPT_INSTALL="opt1,opt2,..."
When launched with UI, each Msi generate a file cmdfile_version_Setup_CmdLine.example_ps1 in the log file folder (otherwise in temp). Example for ThinkDesign version 2019_1_20110 we will generate DPT_TD_2019_1_20110_Setup_CmdLine.ps1
All possible options for DPT_INSTALL are listed in this file and can be reused to execute the same installation in silent mode.
Specially for ThinkDesign Msi, choose one Main Product, then optional Converters and Addons:
- Main Product (only one choice):
- DPT_ThinkDesignProfessional
- DPT_ThinkDesignMolding
- DPT_ThinkDesignOther
- Converters:
- Addons:
Example:
- msiexec.exe /i "DPT_TD_2019_1_20110_en-US.msi" DPT_ACCEPTEULA=true DPT_ACCEPTEULA_DETAIL_1=true DPT_ACCEPTEULA_DETAIL_2=true DPT_ACCEPTEULA_DETAIL_3=true DPT_CUSTOMERACCOUNTID=yourcustomeraccountid INSTALLDIR="c:\myDptInstall" DPT_INSTALL="DPT_ThinkDesignProfessional, DPT_CoordinatesLabel" /l*v "C:\mainMsi.log"
|