Mar 09 2021 09:31 AM
Dears,
We are trying to update Azure Information Protection from a very old version 1.54.59.0 to the latest one via PatchMyPC since this product its supported by their catalog.
Tracking some logs during the installation which fails send to a conclusion that previews AIP client is not able to be removed.
Intune error: Fatal error during installation (0x80070643)
Application logs:
MSI (s) (68:B0) [14:29:35:683]: Note: 1: 2205 2: 3: ActionText
Action ended 14:29:35: InstallValidate. Return value 1.
MSI (s) (68:B0) [14:29:35:683]: Note: 1: 2205 2: 3: Error
MSI (s) (68:B0) [14:29:35:683]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 22
Action start 14:29:35: RemoveExistingProducts.
MSI (s) (68:B0) [14:29:35:683]: Note: 1: 2205 2: 3: Error
MSI (s) (68:B0) [14:29:35:683]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 23
...
MSI (s) (68:98) [14:29:35:952]: Note: 1: 2205 2: 3: Error
MSI (s) (68:98) [14:29:35:952]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 2753
Action start 14:29:35: RegisterExcel.
DEBUG: Error 2753: The File 'adxregistrator.exe' is not marked for installation.
MSI (s) (68:98) [14:29:35:952]: Note: 1: 2205 2: 3: Error
MSI (s) (68:98) [14:29:35:952]: Note: 1: 2228 2: 3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1709
MSI (s) (68:98) [14:29:35:952]: Product: Microsoft Azure Information Protection -- The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2753. The arguments are: adxregistrator.exe, ,
The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2753. The arguments are: adxregistrator.exe, ,
Any idea is appreciated, thank you !
Best
Mar 09 2021 03:34 PM
May 28 2021 07:34 AM - edited May 28 2021 07:35 AM
@uptocloudlimited I've had this issue for years, and reported if via support cases, and directly to PMs for AIP, and it's never really been understood or fixed... apparently it's just me, although I've rebuilt my machine and it still does the same... and it's good to finally meet someone else it happens to.
For me when I want to upgrade I have to uninstall AIP, install an old version that doesn't have the issue (2.0.778.0), and then upgrade that old version to the new/upgrade version, which works every time... until the next new version and I have to do the same again.
If you look through the logs enough you'll probably find "The File 'adxregistrator.exe' is not marked for installation" - which I think for us once when I looked really hard, was some issue with Excel and "Add-In-Express" (i.e. adxregistrator.exe), but I never could solve it.
Jun 02 2021 02:20 AM
Jun 02 2021 02:24 AM
Jun 02 2021 05:15 AM
Thanks mate for your contribution on this topic,
I was working with MS support for weeks until not and unfortunately they were not able to provide me a modern solution how to upgrade AIP on 3k endpoints.
For sure we make sure that all requirement for this client are fulfilled .NET and latest Win10 build.
Spending many hours working on this issue i found out the new Unified Client of AIP ver 2.9.xx or 2.11.xx is not able to remove properly all registries of old AIP Client and this why installation fails from SCCM or Intune.
As a workaround I found that was to manually remove these registry:
reg delete HKEY_CLASSES_ROOT\Installer\Products\658B66CEE64966B4CA9FAC4F271AE6A1
reg delete HKEY_CLASSES_ROOT\Installer\Products\953B8AF77D9E7304D81E2AF862307D24
$MSIUninstallArguments = @(
"/x"
"{21b41fcc-93c0-498f-a284-659d275b4076}"
"{EC66B856-946E-4B66-ACF9-CAF472A16E1A}"
"/qb!"
"/norestart"
"/l*v"
'"C:aip_uninstall_log.log"'
)
Start-Process "msiexec.exe" -ArgumentList $MSIUninstallArguments -Wait -NoNewWindow
Best,