via blogs.rand.com
For 2015 and newer, use the following:
Extract the .msi from the .exe.
------------------------------------
This code will extract the .msi (I verified it works on my system).
Example:
setup.exe /s /x /b"C:\FolderInWhichMSIWillBeExtracted" /v"/qn"
I copied the .exe to the root of my c:
C:\>IMAGINiTRevitUtilities2015.exe /S /X /B"C:\TEMP" /V"/QN"
Refreshed the folder and there it is…
--------------------------------
Microsoft Windows [Version 6.3.9600]
(c) 2013 Microsoft Corporation. All rights reserved.
C:\Users\Jeff>cd\
C:\>IMAGINiTRevitUtilities2015.exe /S /X /B"C:\TEMP" /V"/QN"
C:\>
------------------------------------
NEXT:
/s /v"/qn ALLUSERS=1"
For 2014 and prior
/s /v "ALLUSERS=1" /qn
--------------------------------------------------------------------
Once you extract the Utilities for Revit 2015 .msi
REM Created by Jeff Lotan, 2015-01-15, Copyright IMAGINiT Technologies
REM this silently installs the IMAGINiT Utilities for Revit 2015 for a batch or script file
MSIEXEC /I "C:\_Reprise\Batch\UtilitiesRevit2015.msi" /qb /l "C:\_Reprise\Batch\MSI_Log.txt"
--------------------------------------------------------------------
To add to the Autodesk deployment wizard, use the add additional software and grab the .exe with the following switches:
For 2015 and newer:
/s /v"/qn ALLUSERS=1"
For 2014 and prior
/s /v "ALLUSERS=1" /qn
--------------------------------------------------------------------
Comments