Pre-loading shared backgrounds, flipcharts, and tools.
To unlock the silently, you typically need to enter the 20-digit serial code during the network extraction phase or manually upon first launch. For large-scale deployments, Promethean provides an unattended install guide which explains how to include license information in a transform ( .mst ) file. Summary of Switches /i Installs the package /qn Quiet mode, no UI /norestart Prevents the machine from rebooting automatically TRANSFORMS="file.mst" Applies a custom configuration file (optional) activinspire silent install exclusive
New-Item -Path "HKLM:\SOFTWARE\Promethean\ActivInspire\Options" -Force Set-ItemProperty -Path "HKLM:\SOFTWARE\Promethean\ActivInspire\Options" -Name "ServiceTrustLevel" -Value 2 -Type DWord Pre-loading shared backgrounds, flipcharts, and tools
$process = Start-Process -FilePath $installer -ArgumentList "/S /v "/qn REBOOT=ReallySuppress ALLUSERS=1 /L*V $logPath "" -Wait -PassThru -NoNewWindow $exitCode = $process.ExitCode Summary of Switches /i Installs the package /qn
ActivInspire Silent Install: Exclusive Deployment Strategies
foreach ($path in $paths) $apps = Get-ChildItem -Path $path -ErrorAction SilentlyContinue foreach ($app in $apps) $displayName = (Get-ItemProperty -Path $app.PSPath -Name "DisplayName" -ErrorAction SilentlyContinue).DisplayName if ($displayName -like " ActivInspire ") $version = (Get-ItemProperty -Path $app.PSPath -Name "DisplayVersion" -ErrorAction SilentlyContinue).DisplayVersion if ([version]$version -ge [version]"2.15.0") Write-Host "Found ActivInspire $version" exit 0
: Essential for the computer to recognize Promethean hardware. ActivInspire.msi : The core software.