Issue:
You create a Revit 2024 “Custom Install” using the Deployment option and include your custom Dynamo settings by selecting the XML file you’ve saved, but when installing the custom settings do not exist.
Causes:
This is a known issue by Autodesk.
Solution:
Autodesk recommends you manually copy the file to the hard drive.
We created the following batch file (DynamoSettings.bat) to copy it for us.
---------------------
REM create the folder for the settings.
MD "%userprofile%\appdata\Roaming\Dynamo\Dynamo Revit\2.17"
REM Copy the .xml file into the users new folder: Copy “\\servername\Deploy\Revit_2024\Custom\*.xml “
"%userprofile%\appdata\Roaming\Dynamo\Dynamo Revit\2.17\*.xml"
Exit
------------------------
Edit the Revit 2024 installation batch file and added a line to call the above batch file:
------------------------
Call “\\servername\Deploy\Revit_2024\DynamoSettings.bat”
------------------------
Note: your locations/paths will be different, and you’ll need to adjust it to fit your needs.
About the Author
Follow on Linkedin More Content by Jeff Lotan