Microsoft office has set itself as one of the most used and best suites for business use and MS Word as the most widely used word processor. But how even best are not immune to some small bugs and unexpected behaviors so is not Word. Word has stopped working is probably know to a wide audience of its users, I think I could safely say that each Word user has experienced this error at least once, luckily the error is not anything to worry about since it is an easily fixable issue.
There are some fully automated solutions that could fix any PC issues, some are available in free versions. If you prefer to do things manually however keep on reading and follow the instructions below.
Make sure that you are running the latest build of Word in order to eliminate all bugs and to have a smooth running experience. Go to File > Account > Product Information > Update Options and click Enable Update and then select Update Now.
Corrupted files can cause this crash and this error, try opening another text file inside the Word to eliminate file corruption.
Did you know that MS Word has a safe mode like Windows? In this safe mode, Word will boot up just the application without any add-ins installed and in this environment, you can start one add-in by one to see which one is causing the issue.
Press ⊞ WINDOWS + R to open the run dialog
Inside run dialog type in winword /safe followed by ENTER to run Word in safe mode
If MS Word works fine in Safe mode, disable all COM Add-ins (while being in safe mode) and restart Word. Re-enable the add-ins one at a time to identify the problematic one.
Click on File and then on Options
Click on Add-Ins from the options list
Select COM Add-ins from the drop-down menu and click on Go
Uncheck all the add-ins and click OK to confirm
Close the Dialog Box and MS Word. Now try running MS Word normally and see if it works
Repeat steps to enable the add-ins, one at a time, and check which add-in is causing this error
Press ⊞ WINDOWS + R to open the run dialog
In run dialog type in control panel and press ENTER
Inside Control Panel click on Programs and Features
Locate and click on Microsoft Office to select it
Once selected click on change located on top of the application list
Once Office Windows loads click on Repair
Wait for the process to finish
If all the previous solutions failed next step would be to completely uninstall MS Office and install it again once the old one has been completely removed from the system.
Go to the control panel as explained in the previous step and select Office
Instead of Change this time click on uninstall and follow on-screen instructions
Once uninstall is finished, install a new copy of MS Office.
bootrec /fixboot
ren BCD BCD.bak
bcdboot c:Windows /l en-us /s b: /f ALL
diskpart
list volume
select volume number
assign letter=<LETTER>Note: Make sure to replace “<LETTER>” with the letter you want to allocate to that partition. Afterward, it will assign a letter to the selected volume.
diskpart
list disk
select disk number
list partition
select partition number
active
The operation timed out waiting for a response from the receiving (POP) server 0x8004210a Task 'SMTP server name - Sending and Receiving reported error' (0x8004210A): 'The operation timed out waiting for a response from the receiving (POP) server. If you continue to receive this message, contact your server administrator or Internet service provider (ISP).'
“Unhandled exception has occurred in your application. If you click Continue, the application will ignore this error and attempt to continue. If you click Quit, the application will close immediately.”When this error occurs, your computer may freeze or display other suspicious behavior at times. Either way, there are several options you can check out in this post to resolve this issue, so read on. This kind of error could be caused by several factors. It could be due to your antivirus program or other third-party programs installed on your computer. It is also possible that the installation of the Microsoft .NET framework id corrupted or some of its installation files are corrupted. Thus, to fix the error, there are a few suggestions you need to follow such as:
taskkill /IM "processname" /T /F processname – it is the name of the process which you can see on the Details tab of the Windows Task Manager. /IM – it is the one that specifies the image name of the process, which follows, that is to be terminated. /T – it is the one that kills not just the main process but also the child process. /F – it is the one that terminates the process forcefully.
wmic process where name='processname.exe' deleteNote: In the given command, you need to replace “processname.exe” with the name of the particular process you want to terminate which is found in the Details tab of the Windows Task Manager.
kill -id pidNote: In the given command above, “pid” is the Process ID number of the process you want to terminate. And for you to identify this number, you need to open the Details tab of the Windows Task Manager once again and take note of the number against the process you want to get rid of. Alternatively, you can also run the following command in the PowerShell prompt that you’ve pulled up to get the process ID number:
Get-ProcessFor example, “5364” is the process ID number for the DimScreen.exe process which is the process you want to terminate. In order for you to kill this process, you need to type in this command:
kill -id 5364