彻底清理鲁大师LudashiProtect64.sys

📅 2026/8/17 21:22:11
彻底清理鲁大师LudashiProtect64.sys
鲁大师单文件下载C:\Users\make\AppData\Roaming\LuDaShi 高版本自解压到这个目录了关闭程序后直接删除目录安全高效管理员打开PowerShell清理鲁大师注册表# 删除驱动服务注册表 Remove-Item -Path HKLM:\SYSTEM\CurrentControlSet\Services\LudashiProtect -Recurse -Force -ErrorAction SilentlyContinue #杀掉残留鲁大师进程 Get-Process -Name Ludashi,LDSvc,LDSysMon -ErrorAction SilentlyContinue | Stop-Process -Force #系统服务删除 sc delete LudashiProtect #重启系统 Restart-Computer -Force管理员打开PowerShell删除鲁大师残留文件夹上述重启后在执行# 删除鲁大师主文件夹 Remove-Item C:\Program Files (x86)\LuDaShi -Recurse -Force