There are so many truly wonderful pieces of software sitting around there that I am unaware of, real works of art, pinnacles of perfection, that I only happen upon by chance.
This tool doesn't do any of these things, but it allows you to do them:
Open all the Revit files across your Revit projects and run a health-check script against them. Keeping an eye on the health and performance of many Revit files is time-consuming. You could use this to check in on all your files daily and react to problems before they get too gnarly.
Perform project and family audits across your Revit projects.
Run large scale queries against many Revit files.
Mine data from your Revit projects for analytics or machine learning projects.
Automated milestoning of Revit projects.
Automated housekeeping tasks (e.g. place elements on appropriate worksets)
Batch upgrading of Revit projects and family files.
Testing your own Revit API scripts and Revit addins against a variety of Revit models and families in an automated manner.
Essentially anything you can do to one Revit file with the Revit API or a Dynamo script, you can now do to many!
Features
Batch processing of Revit files (.rvt and .rfa files) using either a specific version of Revit or a version that matches the version of Revit the file was saved in. Currently supports processing files in Revit versions 2015 through 2020. (Of course, the required version of Revit must be installed!)
Custom task scripts written in Python or Dynamo! Python scripts have full access to the Revit API. Dynamo scripts can of course do whatever Dynamo can do :)
Option to create a new Python task script at the click of a button that contains the minimal amount of code required for the custom task script to operate on an opened Revit file. The new task script can then easily be extended to do some useful work. It can even load and execute your existing functions in a C# DLL (see Executing functions in a C# DLL).
Option for custom pre- and post-processing task scripts. Useful if the overall batch processing task requires some additional setup / tear down work to be done.
Central file processing options (Create a new local file, Detach from central).
Option to process files (of the same Revit version) in the same Revit session, or to process each file in its own Revit session. The latter is useful if Revit happens to crash during processing, since this won't block further processing.
Automatic Revit dialog / message box handling. These, in addition to Revit error messages are handled and logged to the GUI console. This makes the batch processor very likely to complete its tasks without any user intervention required!
Ability to import and export settings. This feature combined with the simple command-line interface allows for batch processing tasks to be setup to run automatically on a schedule (using the Windows Task Scheduler) without the GUI.
Generate a .txt-based list of Revit model file paths compatible with RBP. The New List button in the GUI will prompt for a folder path to scan for Revit files. Optionally you can specify the type of Revit files to scan for and also whether to include subfolders in the scan.
Unlimited Power
"With great power come great responsibility"
-- Spiderman
This tool enables you to do things with Revit files on a very large scale. Because of this ability, Python or Dynamo scripts that make modifications to Revit files (esp. workshared files) should be developed with the utmost care! You will need to be confident in your ability to write Python or Dynamo scripts that won't ruin your files en-masse. The Revit Batch Processor's 'Detach from Central' option should be used both while testing and for scripts that do not explicitly depend on working with a live workshared Central file.
Ever so many thanks to Dan for implementing, sharing, and, above all, so wonderfully documenting and maintaining this very impressive and powerful application!
Addendum – Questions
We have discussed similar batch processing topics here in the past, e.g.:
Based n thoise, I raised issue #51 to
ask some important questions on failure handling and recovery:
Are the actions taken automatically logged?
– Why? In case of a problem, it might be handy to know how far you got successfully before the problem appeared, so that you know where to pick up again.
Is the Revit.exe health monitored?
– Why? Well, Revit is not built for batch processing, so one might expect it to crash and die if it is force fed too many files in a single session.
Is Revit restarted for each new document? That would reduce the risk of the aforementioned point.
Dan very kindly responds:
There is a log file that records the console output seen in the GUI. By default, log files by default are written to the folder %APPDATA%\BatchRvt. It logs stuff like process Revit startup and monitoring, files processed, file actions (open, closing, detach, file type, path, etc.). Any custom actions performed by a script would be left up to the script to record action-specific progress. If using a Python script, there is a utility function Output for logging to RBP's console. Dynamo scripts need their own mechanism for logging.
The Revit process(es) are monitored to detect process exit and process busy events. This info is logged to the console. If a Revit session crashes, RBP starts up a fresh Revit session for any files that remain to be processed (so only the Revit file that lead to the crash will be skipped). Indeed, I found this can happen when processing a large amount of Revit files, hence the recovery mechanism. You'll see in the UI there is an option to process the files in the same Revit session (when possible) or process every file in its own session; as far as crash recovery is concerned, however, the behaviour is the same. Note that Dynamo scripts are always made to run in a separate Revit session per file due to some limitations I encountered when closing an active UI document. Python scripts don't have this limitation and hence will process a lot faster!
See 2) :)
There is also a per-file time-out feature that can be used to terminate processing of a file if the time limit is reached.
In that scenario, the Revit process is forcibly terminated and a fresh session started up to process the remaining files.