Keynote Manager with embedded MSI from executable

Hello All,

I am trying to install Keynote Manager which is a Autodesk Revit Addin tool. According to their documentation the MSI cannot be used for the install but the exe is supposed to pass the parameters on to install. However, when I try to install it, I continue to get command line errors from the installer.

Currently trying to install it like this:

Show-ADTInstallationProgress -StatusMessage "Please wait while Keynote Manager update 21.0.7.5119 is installed..."

    Start-ADTProcess -FilePath 'Keynote Manager 21.0.7.51119 Setup.exe' -ArgumentList "/s /v`" /qn /L* `"$((Get-ADTConfig).Toolkit.LogPath)\$($adtSession.InstallName).log`"`"

I have also tried:

Show-ADTInstallationProgress -StatusMessage "Please wait while Keynote Manager update 21.0.7.5119 is installed..."

    Start-ADTProcess -FilePath 'Keynote Manager 21.0.7.51119 Setup.exe' -ArgumentList "/passive /quiet /norestart`" /L* `"$((Get-ADTConfig).Toolkit.LogPath)\$($adtSession.InstallName).log`"`""

Then it throws the command line error like this:

Their documentation is very poor but it is located here:

Deployments » Revolution Design

Any advice or help would be greatly appreciated.

Wouldn't this try to overwrite PSADT's own log file.

.
I would at least add -MSI to the log name so that I can tell it's the MSI's log and not PSADT's

    Start-ADTProcess -FilePath 'Keynote Manager 21.0.7.51119 Setup.exe' -ArgumentList "/s /v`" /qn /L* `"$((Get-ADTConfig).Toolkit.LogPath)\$($adtSession.InstallName)-MSI.log`"`"