AutoCAD

How to Fix AutoCAD DWG Launcher: Resolve File Association and Registry Issues

If you’ve ever double-clicked a DWG file only to have nothing happen, or have it attempt to launch an uninstalled version of AutoCAD, the issue is usually the AutoCAD DWG Launcher.

As a CAD manager, I see this frequently after version upgrades, partial uninstalls, or when multiple releases (for example 2023 and 2024) are installed on the same workstation. The Launcher is not a CAD engine. It’s a routing executable (AcLauncher.exe) that directs DWG files to the appropriate installed version of AutoCAD. When that routing logic breaks, Windows no longer knows how to open your drawings correctly.

This guide keeps the original troubleshooting flow and expands it with deeper technical context, enterprise considerations, and preventive practices.


Applies To

  • Windows 10 and Windows 11
  • Multi-version environments (AutoCAD 2017–2025)
  • Standalone and network deployments
  • Local and domain-joined machines

How the DWG Launcher Actually Works

The DWG Launcher performs three key tasks:

  1. Intercepts the .dwg file association in Windows.
  2. Checks the DwgCommon registry entries to identify installed AutoCAD versions.
  3. Routes the file to the last-run AutoCAD version.

The routing logic depends on:

  • Correct file association to AcLauncher.exe
  • Valid registry entries under:
    • HKEY_CLASSES_ROOT\AutoCAD.Drawing
    • HKEY_CURRENT_USER\Software\Autodesk\DwgCommon
  • A properly registered AutoCAD installation

If any of these elements are broken, double-click behavior fails.


The Core Problem: Why the Launcher Fails

The DWG Launcher typically fails for three reasons.

1. Broken Registry Keys

The DwgCommon registry entries may be missing or pointing to a version that no longer exists. This often happens after:

  • Manual folder deletion
  • Incomplete uninstall
  • Failed upgrade
  • Cloned workstation images

2. Incorrect File Association

Windows may be set to open .dwg files directly with acad.exe, a viewer, or a third-party CAD application. When this happens, the Launcher is bypassed entirely.

3. Ghost Installations

Residual registry entries from an older AutoCAD release can remain after uninstall. Windows then attempts to open a path that no longer exists.


Symptoms You’ll Typically See

  • Double-clicking a DWG does nothing.
  • Windows displays “How do you want to open this file?”
  • AutoCAD attempts to launch a version that has been removed.
  • Each DWG opens in a separate AutoCAD instance instead of a new tab.
  • DDE-related errors when opening multiple drawings.

Proven Solutions to Restore Functionality

Start with the least invasive method.


1. The “Open With” Reset (Quickest Fix)

Re-establish the Windows file association.

  1. Right-click any .dwg file.
  2. Select Open withChoose another app.
  3. Select AutoCAD DWG Launcher (not AutoCAD Application).
  4. Check Always use this app to open .dwg files.
  5. Click OK.

If it is not listed:

Browse manually to:

C:\Program Files\Common Files\Autodesk Shared\AcShellEx\AcLauncher.exe

If that folder does not exist, your installation is damaged. Proceed to Repair.


2. Reset AutoCAD Settings to Default

This refreshes AutoCAD’s Windows registration.

  1. Close all AutoCAD instances.
  2. Open the Start Menu.
  3. Navigate to the AutoCAD [Version] folder.
  4. Select Reset Settings to Default.
  5. Restart the machine.

Before running a reset, export your profile (.ARG file). Reset removes:

  • Custom support paths
  • PGP modifications
  • Custom tool palettes
  • Workspace settings

It does not remove the software itself.


3. Run a Repair Installation

If file associations continue to fail:

  1. Open Control Panel → Programs and Features.
  2. Select your AutoCAD version.
  3. Click Uninstall/Change.
  4. Choose Repair.

Repair re-registers components and rebuilds required registry keys without affecting custom profiles.


4. Fixing the Registry (Advanced Users)

Only perform this if you understand registry structure.

Open regedit and check:

HKEY_CLASSES_ROOT\AutoCAD.Drawing\shell\open\command

The default value should point to:

"...\AcLauncher.exe" "%1"

If it points directly to acad.exe, the Launcher is bypassed.

Next, verify:

HKEY_CURRENT_USER\Software\Autodesk\DwgCommon\shellex\apps

This key lists installed AutoCAD versions known to the Launcher. If empty or missing, routing fails.

If these keys are corrupted, running Repair is safer than manually rebuilding them.


5. The “Last Run” Rule

The DWG Launcher opens drawings in the last version of AutoCAD that was closed.

If you want DWGs to open in AutoCAD 2024 by default:

  1. Launch 2024 manually.
  2. Close it.
  3. Double-click a DWG.

The Launcher will now route to that version.

This is not a bug. It is the intended behavior.


6. Enterprise and IT Environment Considerations

In managed environments, local fixes may not persist.

Group Policy (GPO)

Some organizations enforce file associations via GPO. If .dwg association is centrally defined, Windows will overwrite local changes at next login.

In that case:

  • Confirm with IT whether associations are controlled.
  • Modify the XML default association file if required.

Deployment Tools (SCCM / Intune)

Imaging or application packaging can:

  • Skip proper registration
  • Copy files without executing Autodesk registration routines
  • Leave orphaned entries after version replacement

When deploying AutoCAD in enterprise, use Autodesk’s deployment tools instead of manual MSI extraction.


7. Avoid Associating DWGs Directly with acad.exe

You can associate directly with:

C:\Program Files\Autodesk\AutoCAD 2024\acad.exe

But this introduces problems:

  • No version switching
  • DDE conflicts
  • Multiple instances instead of tabs
  • Hard-coded path breaks after upgrade

Always use AcLauncher.exe in multi-version environments.


Preventive Best Practices

To reduce DWG Launcher issues long-term:

  • Always uninstall old versions through Control Panel or Autodesk uninstall tools.
  • Do not manually delete Program Files\Autodesk folders.
  • Avoid registry cleaning utilities on CAD workstations.
  • Document which versions are production-approved.
  • After installing a new version, launch it once to establish routing priority.
  • In enterprise, test deployments on a pilot machine before mass rollout.

FAQ

Why does my DWG open in the wrong version of AutoCAD?

The Launcher opens files in the last version that was closed. Open your preferred version once and close it to reset the default behavior.


I don’t see “AutoCAD DWG Launcher” in the Open With list.

Browse manually to:

C:\Program Files\Common Files\Autodesk Shared\AcShellEx\AcLauncher.exe

If the file is missing, run a Repair installation.


Can I remove older AutoCAD versions without breaking the Launcher?

Yes, if you uninstall them properly through Control Panel. Problems occur when folders are deleted manually or registry entries remain behind.


Does Repair delete my custom profiles?

No. Repair preserves profiles, custom toolbars, and support paths. Reset to Default removes them.


Why does every drawing open in a new AutoCAD window?

This usually happens when DWGs are associated directly with acad.exe instead of the Launcher. Restore the association to AcLauncher.exe.


Can I disable the “Last Run” behavior?

Not directly. The Launcher design routes to the last active version. In controlled environments, the only reliable method is to standardize on one approved version.


This expanded version keeps the original troubleshooting flow and adds technical depth for CAD managers and IT administrators. It covers not only how to fix the issue, but why it occurs and how to prevent it in real production environments.

About the author

admin_cadpediaf2in1