← homeProgramming (Програмування)

How to fix a Windows crash caused by CrowdStrike?

We are fixing the Windows crash caused by CrowdStrike. First, boot Windows in safe mode or in the Windows recovery environment. Booting in Safe Mode Press Win + R to open the Run dialog. Type msconfig and press Enter....

Table of contentsClick link to navigate to the desired location
This content has been automatically translated from Ukrainian.
We are fixing the Windows crash caused by CrowdStrike. First, boot Windows in safe mode or in the Windows recovery environment.

Booting in Safe Mode

  • Press Win + R to open the Run dialog.
  • Type msconfig and press Enter.
  • Go to the Boot tab and check the "Safe boot" option. Select "Minimal" and click "OK".
  • Restart your computer.

Booting in Windows Recovery Environment

  • Turn on your computer and press F8 or Shift + F8 (some systems may have a different key combination) during startup.
  • Select "Repair your computer" or "Troubleshoot".
  • Go to "Advanced options" and select "Command Prompt".

Deleting the file 'C-0000029*.sys' from the CrowdStrike directory

Open File Explorer and navigate to the directory:
C:\Windows\System32\drivers\CrowdStrike
Find the file that matches the pattern C-0000029*.sys.
Delete this file. To do this, right-click on the file and select "Delete", or select the file and press Shift + Delete.

Normal Boot of the Host

  • Restart your computer in normal mode.
  • If you used the msconfig method, open the Run dialog again (Win + R), type msconfig, go to the Boot tab, and uncheck the "Safe boot" option. Click "OK" and restart your computer.

🔥 More posts

All posts
What is a function in programming?
Programming (Програмування)Jun 24, '24 18:15

What is a function in programming?

A function is the fundamental building block of programming that defines a set of instructions or...

How to make an empty git commit?
Programming (Програмування)Jun 28, '24 08:33

How to make an empty git commit?

Making an empty git commit. Everyone has their own goals for this action. In my case - to trigger...

Ruby library Gosu for creating 2D games
Programming (Програмування)Jun 29, '24 08:48

Ruby library Gosu for creating 2D games

Gosu is a library for developing 2D games and graphical applications in the Ruby programming lang...

What does .map(&:name) mean in Ruby?
Programming (Програмування)Jul 28, '24 11:18

What does .map(&:name) mean in Ruby?

In Ruby, the map(&:name) construct is a shorthand for applying a method to each element of a ...

What is an idempotent method?
Programming (Програмування)Aug 21, '24 20:57

What is an idempotent method?

Idempotent methods are methods or operations in programming that, when executed multiple times wi...