Installing a Revit add-in,
properly.
Where the files go, why Revit asks “Always Load?”, how to check a download is what it claims to be, and how to remove an add-in without leaving ghosts.
Where the files go, why Revit asks “Always Load?”, how to check a download is what it claims to be, and how to remove an add-in without leaving ghosts.
| Location | Scope | Needs admin |
|---|---|---|
%AppData%\Autodesk\Revit\Addins\<year>\ | current user | no |
%ProgramData%\Autodesk\Revit\Addins\<year>\ | all users | yes |
%ProgramData%\Autodesk\ApplicationPlugins\ | Autodesk App Store bundles | yes |
Each add-in is a .addin XML manifest pointing at a DLL. Revit reads every manifest in these folders at start-up - one folder per Revit year, which is why an installer must put a copy in each year you use.
Revit shows it for DLLs without a trusted code-signing certificate. It is a trust decision, not a malware verdict. Before clicking Always Load: download only from the vendor's site, and compare the installer's SHA-256 with the published checksum:
certutil -hashfile Parapet-Setup.exe SHA256
Parapet publishes checksums on the docs page.
Revit 2025, 2026 and 2027 run add-ins on .NET 8; earlier versions on .NET Framework 4.8. A DLL built for one will not load in the other (“Could not load file or assembly…”). A vendor that lists 2020-2027 ships both builds - Parapet's installer picks the right one per year. More: Revit 2027 add-ins.
Parapet-Setup.exe from the download page; it lists Revit 2020-2027 and pre-selects the versions on your PC. No admin rights.Addins\<year> folders for leftover .addin files.Related guides, tutorials and comparisons.
Which add-ins work in Revit 2027, why 2025+ add-ins need .NET 8 builds, how to check a plugin supports 2027 before you upgrade, and…
Answers about Parapet's Revit add-ins: supported Revit versions (2020-2027), pricing, the 30-day free trial, licensing on two computers,…
How BIM managers use Parapet: find every CAD import and its views, cut file size, select warning elements, fix worksets and phases in bulk,…