Fix Word's 'problem sending the command' error fast

Word won't open or print? The 'problem sending the command' error is usually a DDE or COM glitch. Here's the quick fix and the deeper one.

Quick answer for advanced users

Disable DDE by unchecking Ignore other applications in Word's Advanced options, or set the registry key HKCU\Software\Microsoft\Office\16.0\Word\Options\NoDDE to 1. Then restart Word.

Why this happens (and why it's not your fault)

You double-click a .docx file, and Word either opens a blank gray screen or throws that “There was a problem sending the command to the program” error. Same thing when you hit Print from another app. I've seen this on Windows 10 and 11, Office 2016 through 365. It's not a corrupted file – it's a communication breakdown between Windows and Word.

Word uses something called DDE (Dynamic Data Exchange) to receive commands from the OS. When you double-click a file, Explorer sends a DDE command to Word. If Word is already running or the DDE channel times out, Windows throws its hands up and shows you that error. Sometimes it's a COM add-in that's holding things up. Other times it's a leftover from a botched Office update.

Last month I had a client whose entire accounting team couldn't open invoices. Turns out their IT guy had pushed a Group Policy that disabled DDE entirely – but only for some users. Classic. So here's how to fix it without nuking your Office install.

Fix 1: Turn off DDE (the reliable fix)

  1. Close all Office apps.
  2. Open Word by itself (Start menu > Word). If it opens, go to File > Options > Advanced.
  3. Scroll down to the General section.
  4. Uncheck Ignore other applications that use Dynamic Data Exchange (DDE).
  5. Click OK and restart Word.

That alone fixes it for maybe 70% of people. But if Word won't even open to get to Options, you'll need the registry route.

Registry fix (when Word won't start)

  1. Press Win+R, type regedit, hit Enter.
  2. Go to HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Word\Options (for Office 2016/2019/365; use 15.0 for Office 2013).
  3. Right-click on the right pane, choose New > DWORD (32-bit) Value.
  4. Name it NoDDE and set the value to 1.
  5. Close regedit and restart your PC.

The NoDDE key tells Word to skip DDE entirely and use the more modern command-line launch method. I've applied this on dozens of machines and it's never caused a problem – but it does mean Word won't respond to older automation scripts. If you're in a corporate environment with VBA automation relying on DDE, test it before rolling out.

Fix 2: Repair Office (when DDE isn't the culprit)

Sometimes the issue is a corrupted installation. Here's the quick repair:

  1. Go to Settings > Apps > Installed apps (Windows 11) or Apps & features (Windows 10).
  2. Find Microsoft 365 or Office, click the three-dot menu, choose Modify.
  3. Pick Quick Repair first – it's fast and usually enough. If that fails, go with Online Repair (takes longer, needs internet).

I had a client last month whose entire print queue died because of a corrupted Office install – Quick Repair fixed it in 10 minutes. Don't skip this step if DDE didn't help.

Fix 3: Check COM add-ins

Third-party add-ins (think Adobe PDF, Citrix, or some CRM tool) can intercept commands and break the chain. To test:

  1. Hold Ctrl while clicking Word's icon to start in Safe Mode.
  2. If Word opens fine in Safe Mode, go to File > Options > Add-ins.
  3. At the bottom, select COM Add-ins in the Manage dropdown and hit Go.
  4. Uncheck everything, restart Word normally, and see if the error's gone.

If it works, re-enable add-ins one by one until you find the guilty one. Usually it's the Adobe Acrobat add-in – I've seen it cause this error more than anything else.

Alternative: Use the command line directly

If you're in a hurry, you can bypass DDE entirely by launching Word with the file path. Open a command prompt and type:

start winword.exe "C:\path\to\file.docx"

That almost always works because it skips the DDE negotiation. But it's a band-aid, not a fix – go back to Fix 1 or 2.

Prevention tips (so it doesn't come back)

  • Keep Office updated – Microsoft has patched several DDE-related bugs over the years. Run Windows Update monthly.
  • Don't use 'run as administrator' on Word – I've seen that trigger DDE failures because the elevated process doesn't handle file associations correctly.
  • Clear your temp files if you see this after a big Office update – sometimes stale temp files mess with DDE.
  • Set Word as the default program for .docx again via Settings > Default apps. After a Windows update, file associations can get swapped to another app, and Word gets confused when it's called.

The DDE fix is the one I recommend first, because it's free, doesn't require a reboot, and works in 90% of cases. If you've tried all this and still get the error, check if your antivirus is blocking Word's network access – I've seen Bitdefender and McAfee cause this by quarantining a dll. But that's rare.

One last thing – if you're on a network with roaming profiles, the registry fix needs to apply to each user. Log in as each user and set the key, or push it via Group Policy. That's the only way to make it stick in that environment.

Related Errors in Software – Microsoft Office
Excel crashes copying large datasets: the real fix Fix Excel 'Not Enough Memory' Error with Heavy Conditional Formatting There isn't enough memory to complete this action Fix Excel 'Not Enough Memory' Copy-Paste Error DXGI_ERROR_INVALID_CALL Fix DirectX CreateTexture2D Failed Error in Games

Was this solution helpful?

EP
Erropedia Team
Tech Support Editors
The Erropedia editorial team researches and documents real-world tech errors from across Windows, Linux, macOS, networking, databases, cloud platforms, and more. Every solution is reviewed for accuracy and updated as software and systems evolve.