Our part finder will allow you to look up the part(s) you need.
Find the product code (varies by version):
Get-WmiObject -Class Win32_Product | Where-Object $_.Name -like "*ActivInspire*" | Select IdentifyingNumber
Then uninstall silently:
msiexec /x XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX /qn /norestart
If you have an ActivInspire Volume License (not personal), you can pre-activate during silent install using an exclusive registry import:
Example activation script:
msiexec /i ActivInspire.msi /qn
regedit /s "\\server\share\ActivInspire_license.reg"
Free version (ActivInspire Personal) does not require a license key.
ActivInspire defaults to the "Express" view, which is simplified. For power users or secondary education, the "Professional" view is standard.
Parameter: ACTIVINSPIRE_DASHBOARD_VIEW=Professional
If you have a volume license, obtain your license.li file. The silent install will fail if it tries to launch the license wizard. You will inject this via command line.
Find the product code (varies by version):
Get-WmiObject -Class Win32_Product | Where-Object $_.Name -like "*ActivInspire*" | Select IdentifyingNumber
Then uninstall silently:
msiexec /x XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX /qn /norestart
If you have an ActivInspire Volume License (not personal), you can pre-activate during silent install using an exclusive registry import:
Example activation script:
msiexec /i ActivInspire.msi /qn
regedit /s "\\server\share\ActivInspire_license.reg"
Free version (ActivInspire Personal) does not require a license key.
ActivInspire defaults to the "Express" view, which is simplified. For power users or secondary education, the "Professional" view is standard.
Parameter: ACTIVINSPIRE_DASHBOARD_VIEW=Professional
If you have a volume license, obtain your license.li file. The silent install will fail if it tries to launch the license wizard. You will inject this via command line.