: Most kits include a silent.ini which contains the pre-configured arguments needed for a hands-off install.
msiexec /x 00000000-0000-0000-0000-000000000000 /qn /norestart
setup.exe /S /v/qn
| Property | Description | Example | | :--- | :--- | :--- | | PIDataServer | Default PI Data Archive server | PIDataServer="PIAPP01" | | PIAFDatabase | Default AF Database name | PIAFDatabase="Production_AF" | | DisableAF | Disable AF features | DisableAF=1 | | DisableOsisoftAuth | Disable integrated authentication | DisableOsisoftAuth=0 |
To perform a silent installation of PI DataLink , you must modify and use the provided silent.ini
Silent installation of Pi Datalink is achievable via standard msiexec commands using the extracted MSI from the official bootstrapper. Care must be taken to handle reboot suppression, registry-based configuration, and Excel add-in load behavior post-install. Enterprise deployment is feasible with proper testing and logging.
Create a PowerShell script ( Deploy-PIDatalink.ps1 ):
Silent installations are binary: they either work silently or fail silently. You must become a master of log analysis.
Package the script and the installer. Target your "Engineering Workstations" device collection. Set the deployment to "Hidden" or "Required" with no user interaction.
: Most kits include a silent.ini which contains the pre-configured arguments needed for a hands-off install.
msiexec /x 00000000-0000-0000-0000-000000000000 /qn /norestart
setup.exe /S /v/qn
| Property | Description | Example | | :--- | :--- | :--- | | PIDataServer | Default PI Data Archive server | PIDataServer="PIAPP01" | | PIAFDatabase | Default AF Database name | PIAFDatabase="Production_AF" | | DisableAF | Disable AF features | DisableAF=1 | | DisableOsisoftAuth | Disable integrated authentication | DisableOsisoftAuth=0 |
To perform a silent installation of PI DataLink , you must modify and use the provided silent.ini pi datalink silent install
Silent installation of Pi Datalink is achievable via standard msiexec commands using the extracted MSI from the official bootstrapper. Care must be taken to handle reboot suppression, registry-based configuration, and Excel add-in load behavior post-install. Enterprise deployment is feasible with proper testing and logging.
Create a PowerShell script ( Deploy-PIDatalink.ps1 ): : Most kits include a silent
Silent installations are binary: they either work silently or fail silently. You must become a master of log analysis.
Package the script and the installer. Target your "Engineering Workstations" device collection. Set the deployment to "Hidden" or "Required" with no user interaction. Enterprise deployment is feasible with proper testing and