It’s a frustrating scenario many users face after upgrading: you set the default “Save As” format to an earlier release such as AutoCAD 2018 to maintain compatibility with clients or consultants, but after restarting AutoCAD 2026 or opening a new drawing, the format reverts to 2013 or 2018.
In AutoCAD 2026, several users report that this specific setting does not persist, even though other profile preferences do. Below is a complete technical breakdown of why this happens and how to permanently resolve it.
Understanding the Core Problem
This behavior is not always a software defect. In many cases, it is the result of how AutoCAD profiles, system variables, and the Windows Registry interact.
In AutoCAD 2026, the default save format is stored within the active profile under the HKEY_CURRENT_USER registry hive. If AutoCAD cannot write to that location, or if something overrides the value during startup, the setting resets every time the application initializes.
Typical root causes include:
- A corrupted or read-only AutoCAD profile
- Insufficient Windows permissions
- Startup LISP scripts modifying system variables
- Enterprise deployment settings
- Template file inheritance
- Profile synchronization conflicts
Practical Solutions from the Field
Clean Exit Method
AutoCAD writes profile changes to the registry only when it exits properly.
Procedure:
- Open a new blank drawing.
- Type OPTIONS.
- Go to the Open and Save tab.
- Set the desired Save As format.
- Click Apply, then OK.
- Immediately close AutoCAD normally.
Avoid waiting for background processes or force-closing the application. An improper shutdown prevents the profile from being updated.
Verify the SAVEFILEFORMAT System Variable
Contrary to common assumptions, the save format is controlled by the system variable:
SAVEFILEFORMAT
Check it by typing:
SETVAR
Then enter:
SAVEFILEFORMAT
Common values include:
- 36 → AutoCAD 2013 format
- 48 → AutoCAD 2018 format
If this variable is being changed at startup, something in the environment is overriding it.
You can test persistence by:
- Setting SAVEFILEFORMAT manually.
- Closing AutoCAD.
- Reopening and checking the value.
If it resets, investigate scripts or profile write restrictions.
Check for Startup LISP Files (Silent Overrides)
Many firms standardize settings using:
- acad.lsp
- acaddoc.lsp
If one of these files contains:
(setvar "SAVEFILEFORMAT" 48)
or similar, the save format will reset every time a drawing opens.
Steps:
- Type APPLOAD.
- Review “Load at Startup” applications.
- Search support paths for LISP files.
- Consult your CAD Manager if working in a managed environment.
This is one of the most common causes in enterprise offices.
Template File (DWT) Inheritance
A frequently overlooked factor is the drawing template.
If your default DWT file was created in a specific format, new drawings may inherit that format automatically.
Verify:
OPTIONS → Files → Template Settings
Open the default template and confirm its save format. If necessary:
- Open the template directly.
- Use SAVEAS.
- Resave in the required version.
- Replace the template.
Template inheritance often explains why the issue appears only with new drawings.
Permissions and Registry Access
The save format is stored in:
HKEY_CURRENT_USER\Software\Autodesk\AutoCAD\R25.1\ACAD-xxxx:xxx\Profiles\<ProfileName>
If the user account cannot write to this key, settings will not persist.
Troubleshooting steps:
- Run AutoCAD once as Administrator
- Check Windows user permissions
- Ensure the profile is not marked as read-only
- Verify no endpoint security software blocks registry writes
In corporate environments, roaming profiles or redirected AppData folders may also interfere.
Profile Corruption and the Profile Switch Method
Sometimes the active profile is damaged.
Procedure:
- Open OPTIONS.
- Go to the Profiles tab.
- Create a new profile.
- Set it as current.
- Change the save format.
- Close AutoCAD.
- Reopen and verify.
If the new profile retains the setting, the original profile was corrupted.
Enterprise Deployment and Group Policy Overrides
In managed environments, the issue may originate from:
- Autodesk Custom Deployment images
- Group Policy Objects (GPO)
- Logon scripts
- Centralized configuration files
- Network-based profiles
IT administrators sometimes enforce save formats intentionally to maintain company-wide consistency.
If settings revert consistently across multiple users, investigate deployment configuration rather than local workstation settings.
Autodesk Profile Migration and Synchronization
If AutoCAD 2026 migrated settings from a previous version, inconsistencies can occur.
Additionally:
- Autodesk account synchronization
- Cloud-based profile storage
- Settings import from older releases
can overwrite local changes during startup.
If necessary, perform a clean reset using:
Reset Settings to Default (found in the AutoCAD 2026 Start Menu folder)
Back up custom CUIX files before performing a reset.
Technical Background: Why 2013 or 2018 Are Default
AutoCAD’s internal DWG database structure changes only during major architectural revisions.
AutoCAD 2026 may still use the 2018 DWG format internally because no structural update occurred after that milestone.
That is why newer releases still default to 2013 or 2018 formats.
FAQ: Troubleshooting AutoCAD Save Settings
Why does AutoCAD 2026 default to 2018 or 2013 format?
Because DWG architecture changes only every few release cycles. Even if you are using 2026, the internal format may still correspond to the 2018 structure.
Can I set the default save format via command line?
Yes. Use the SAVEFILEFORMAT system variable. It can be modified manually, via script, or via LISP.
Example:
(setvar "SAVEFILEFORMAT" 48)
Does resetting AutoCAD delete my drawings?
No. Resetting affects:
- UI configuration
- Profiles
- Paths
- Preferences
It does not delete DWG, DWT, CTB, or plot style files. Always back up custom CUIX files before resetting.
I changed the setting but it only works for the current drawing. Why?
Common causes:
- A startup LISP modifying SAVEFILEFORMAT
- A read-only or corrupted profile
- Template inheritance
- Enterprise deployment override
Check APPLOAD and template configuration first.
How can I verify whether a script is changing the format?
- Open AutoCAD.
- Immediately type:
SAVEFILEFORMAT
- Note the value.
- Open a new drawing.
- Check again.
If the value changes after a drawing opens, a script is modifying it.
What is the safest permanent fix?
The most reliable sequence is:
- Verify no LISP override exists.
- Confirm template format.
- Create a new profile.
- Set SAVEFILEFORMAT.
- Exit AutoCAD cleanly.
- Reopen and confirm persistence.
If the issue persists across machines, involve IT to review deployment configuration.
This issue is rarely random. It is usually tied to profiles, scripts, templates, or managed environments. A structured diagnostic approach resolves it quickly and prevents unnecessary reinstalls.
