Free Macro to Export All Possible Revit Warnings

From Troy Gates’ Revit Coaster blog:

A few weeks ago, Konrad Sobon, posted a Python script for exporting all the possible Revit warnings to use in a Dynamo script that analyzes and ranks the warnings in the current model. Since I mostly work in C#, I took his Python script and created a C# macro. I’ve had several requests for it, so here it is…

public void ExportWarnings()
{
try
{
using (StreamWriter writer = new StreamWriter(@"C:tempwarnings.txt"))
{
...

Read more