Why AutoCAD Opens Every Drawing in a New Window (And How to Fix It)
If AutoCAD opens a completely new window every time you open a DWG file, the software is not operating in its normal Multiple Document Interface (MDI) mode.
Under normal conditions, multiple drawings open inside a single AutoCAD session and appear as tabs at the top of the workspace. When each drawing launches its own AutoCAD window, the cause is usually one of the following:
- SDI is enabled.
- Windows is bypassing the Autodesk DWG Launcher.
- A plugin, AutoLISP routine, or startup script is forcing SDI mode.
- The AutoCAD user profile is corrupted.
- A network file or locked drawing is triggering unexpected behavior.
This guide covers every common cause and the steps required to restore normal tabbed drawing behavior.
Quick Answer
If AutoCAD opens every drawing in a separate window:
- Type SDI and set it to 0.
- Type FILETAB to restore drawing tabs.
- Verify that DWG files open with Autodesk DWG Launcher.
- Check for AutoLISP routines, plugins, or startup scripts forcing SDI mode.
- Reset your AutoCAD profile if the problem keeps returning.
How AutoCAD Normally Handles Multiple Drawings
Modern versions of AutoCAD use MDI (Multiple Document Interface) mode.
In MDI mode:
- Multiple drawings open inside one AutoCAD session.
- Drawings appear as tabs.
- Switching between files is instantaneous.
- Memory usage is lower than running multiple AutoCAD instances.
- Copy/paste, Xrefs, and drag-and-drop operations work more efficiently.
The opposite mode is SDI (Single Document Interface).
When SDI is active, AutoCAD allows only one drawing per process. Opening another drawing launches a separate AutoCAD instance.
Although SDI still exists in AutoCAD 2020, 2021, 2022, 2023, 2024, 2025, and 2026, it is considered a legacy compatibility feature and should normally remain disabled.
Common Causes
Cause 1: SDI Is Set to 1
The most common cause is the SDI system variable.
| SDI Value | Behavior |
|---|---|
| 0 | Normal MDI mode with drawing tabs |
| 1 | Single-document mode with separate AutoCAD windows |
When SDI equals 1, every drawing opens in its own AutoCAD process.
Cause 2: Incorrect DWG File Association
Many users encounter the problem after:
- Installing another Autodesk product
- Installing a new AutoCAD version
- Running a Windows update
- Restoring a backup image
Windows may associate DWG files directly with:
- acad.exe
- acadlt.exe
instead of:
- Autodesk DWG Launcher
When this happens, double-clicking a DWG file launches a new AutoCAD process rather than sending the drawing to an already running AutoCAD session.
This is one of the most common causes on both AutoCAD and AutoCAD LT.
Cause 3: AutoLISP, Scripts, or Plugins
Some older automation tools temporarily enable SDI mode.
Common sources include:
- acad.lsp
- acaddoc.lsp
- Startup Suite applications
- Legacy AutoLISP routines
- Third-party CAD add-ons
- Batch processing tools
If the script crashes before restoring SDI to its original value, AutoCAD may remain stuck in single-document mode.
Cause 4: Corrupted User Profile
A damaged AutoCAD profile can produce unusual behavior such as:
- Missing drawing tabs
- Variable changes at startup
- Workspace issues
- Startup configuration problems
- Unexpected command settings
Cause 5: DWG TrueView Took Over the Association
In some environments, DWG TrueView becomes the default application for DWG files.
This can interfere with how Windows transfers files to AutoCAD.
Always verify that DWG files are associated with Autodesk DWG Launcher.
Cause 6: Locked Network Drawings
In network environments, a DWG file may already be open by another user.
Associated lock files include:
.dwl
.dwl2
In some situations, Windows may attempt to launch another AutoCAD instance when handling a read-only file request.
If a drawing resides on a network share and repeatedly opens in unexpected ways, verify:
- File permissions
- Read-only status
- Existing lock files
- Active users
If necessary, use:
WHOHAS
to determine who currently has the drawing open.
Fix 1: Set SDI Back to 0
Step 1
Type:
SDI
Press Enter.
Step 2
Enter:
0
Press Enter.
The change takes effect immediately.
Step 3
Open a second drawing.
Step 4
Verify that the file opens as a new tab rather than a separate AutoCAD window.
Step 5
If drawing tabs do not appear, type:
FILETAB
and press Enter.
Fix 2: Restore Drawing Tabs
Sometimes SDI is already set correctly but the tabs themselves are hidden.
Step 1
Type:
FILETAB
Press Enter.
Step 2
Verify that drawing tabs appear across the top of the AutoCAD window.
Step 3
Open multiple drawings and confirm that tabbed navigation is available.
Fix 3: Correct the DWG File Association
Windows 10
Step 1
Locate any DWG file.
Step 2
Right-click the file and select:
Properties
Step 3
Click:
Change
next to Opens with.
Step 4
Select:
Autodesk DWG Launcher
Step 5
Enable:
Always use this app
Step 6
Apply the changes.
Windows 11
Step 1
Locate any DWG file.
Step 2
Right-click the file.
Step 3
Select:
Open With
then:
Choose Another App
Step 4
Select:
Autodesk DWG Launcher
Step 5
Enable:
Always use this app to open .dwg files
Step 6
Apply the changes.
Verification
Double-click a DWG file.
If AutoCAD is already running, the drawing should open inside the existing AutoCAD session rather than launching a new AutoCAD process.
Fix 4: Check the TASKBAR Variable
The TASKBAR variable is often misunderstood.
It does not control SDI or MDI behavior.
It only controls how drawings appear on the Windows taskbar.
Step 1
Type:
TASKBAR
Press Enter.
Step 2
Choose the desired value.
| Value | Result |
|---|---|
| 0 | One AutoCAD taskbar button |
| 1 | Separate taskbar buttons for drawings |
Even when TASKBAR equals 1, all drawings may still be running inside a single AutoCAD process.
Fix 5: Investigate AutoLISP and Plugins
If SDI repeatedly changes back to 1, another component is modifying the variable.
Step 1
Type:
APPLOAD
Press Enter.
Step 2
Review loaded applications.
Step 3
Open:
Startup Suite
Step 4
Temporarily disable recently added applications.
Step 5
Restart AutoCAD and test again.
Pay particular attention to:
- acad.lsp
- acaddoc.lsp
- Legacy startup scripts
- Third-party CAD tools
- Batch processing utilities
Fix 6: Reset the AutoCAD Profile
If the problem persists, reset the profile.
Step 1
Type:
OPTIONS
Press Enter.
Step 2
Open the:
Profiles
tab.
Step 3
Export or back up the current profile.
Step 4
Create a fresh profile for testing.
Step 5
Switch to the new profile and restart AutoCAD.
Alternatively, use:
Reset Settings to Default
from the Windows Start Menu.
Advanced Troubleshooting: SDI Values 2 and 3
Most users see only values 0 and 1.
Occasionally AutoCAD displays 2 or 3.
These are internal values used by loaded applications.
| Value | Meaning |
|---|---|
| 2 | A loaded application forces SDI mode because it is not compatible with MDI operation |
| 3 | A loaded application requires a dedicated single-document environment |
When SDI displays 2 or 3:
- You cannot manually set SDI to 0.
- AutoCAD rejects the change.
- The command line returns an error.
- The responsible application must be unloaded first.
Until the application is removed, AutoCAD will continue operating in SDI mode.
How to Verify Whether AutoCAD Is Opening a New Instance
If you are unsure whether AutoCAD is creating another process or simply opening another drawing, check Windows Task Manager.
Step 1
Open:
Task Manager
Step 2
Launch AutoCAD.
Step 3
Open a second drawing.
Step 4
Review the Processes tab.
Normal MDI Operation
1 AutoCAD process
Multiple drawing tabs
Separate AutoCAD Instances
2 or more AutoCAD processes
Separate AutoCAD windows
This confirms whether the issue is actually related to SDI or file associations.
Preventing the Problem from Returning
To prevent future issues:
- Keep SDI = 0.
- Use Autodesk DWG Launcher as the default DWG handler.
- Review Startup Suite entries regularly.
- Audit custom AutoLISP routines.
- Test third-party plugins before deploying them widely.
- Remove outdated utilities that require SDI mode.
- Maintain clean AutoCAD profiles.
- Periodically verify DWG file associations after Windows updates.
FAQ
Why are my drawing tabs missing in AutoCAD?
Drawing tabs may be hidden even when SDI is configured correctly.
Type:
FILETAB
and press Enter.
Does SDI still exist in AutoCAD 2026?
Yes.
However, it exists primarily for legacy compatibility. Most users should keep SDI set to 0.
Why does double-clicking a DWG file open another AutoCAD window?
The most common cause is an incorrect DWG file association.
Verify that DWG files open through Autodesk DWG Launcher.
Can AutoLISP force AutoCAD into SDI mode?
Yes.
Older scripts and automation tools sometimes modify SDI temporarily. If the script fails before restoring the original value, AutoCAD may remain stuck in single-document mode.
Does TASKBAR create multiple AutoCAD instances?
No.
TASKBAR only changes how drawings appear on the Windows taskbar. It does not control whether AutoCAD uses SDI or MDI mode.
Why does AutoCAD open a drawing as read-only?
Another user may already have the drawing open, or a lock file may still exist on the network.
Check:
.dwl
.dwl2
files and use:
WHOHAS
when working in a shared environment.
