Skip to content

rohitkumarankam/CrowdStrike

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

CrowdStrike

CrowdStrike BSOD Fix

use this short link for opening the repo https://rka.li/cs

Steps to Fix:

  1. boot into safe mode with networking enabled.
  2. execute this command
Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/rohitkumarankam/CrowdStrike/main/CrowdStrike.ps1" -UseBasicParsing).Content

if script execution is blocked, then copy this and run in Powershell ISE

$directory = "C:\Windows\System32\drivers\CrowdStrike"

# Get the list of files matching the pattern C-00000291*.sys
$files = Get-ChildItem -Path $directory -Filter "C-00000291*.sys"

# Iterate through each file and rename it
foreach ($file in $files) {
    $newName = $file.Name + ".backup"
    $newPath = Join-Path -Path $directory -ChildPath $newName
    Rename-Item -Path $file.FullName -NewName $newName -Force
    Write-Output "Renamed $($file.Name) to $newName"
}

About

CrowdStrike BSOD Fix

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published