Sublime Forum

Errors in Windows event viewer

#1

Hello,
using sublime text4 on windows I get this this error on the event viewer, it happens almost every minute
the event id is 1000 and the fault is coming from nt.dll
this is very similar to this issue but there’s no response to it since 2016

0 Likes

#2

What version of Windows are you using? Do you have an anti-virus running that could be interfering?

0 Likes

#3

Windows 10, and yes I have an anti virus installed.

0 Likes

#4

Error ID 1000 most likely indicates currupted system files or bad runtime installations.

Sublime Text ships a local copy of msvcr100.dll and vcruntime140.dll runtime libraries, but they are only used if they are not present on your system. Windows always prefers files from system32 to prevent dll-hijacking. You could try to install latest vc_redist100 and vc_redist140 in a first step.

Beyound that you can check and hopefully restore currupted system files by running the following commands in given order:

1. DISM /Online /Cleanup-Image /ScanHealth       ; scan for issues
2. DISM /Online /Cleanup-Image /CheckHealth      ; display scan results
3. DISM /Online /Cleanup-Image /RestoreHealth    ; only needed if currupted files were found
4. sfc /scannow

Microsoft also advices to re-install .NET framework, but it is not used by Sublime Text.

1 Like