This script will permanently remove LanSchool from your personal device. It disables spying, deletes related files, uninstalls everything, and restores your personalization.
⚠️ WARNING: Anybody working on Venin is not responsible for what happens. If you paste this in, you're saying you're fully aware it bypasses restrictions on school laptops.
🔧 Copy and paste this into Windows PowerShell as Administrator:
# # # LanSchool Obliterator – Green Edition (With Cancel Option) # Destroy LanSchool, reclaim your device. # Scripted with fury by Venin, NeoLeaf, FallCrow, and VE1NZ Write-Host "`n🧼🧠 LANSCHOOL OBLITERATOR INITIALIZING..." -ForegroundColor Green Write-Host "🔥 Scripted by: Venin, NeoLeaf, FallCrow, and VE1NZ" -ForegroundColor Green # Offer cancel option Write-Host "`n⚠️ Press any key within 5 seconds to CANCEL this script!" -ForegroundColor Green $cancelTimer = 5 $end = (Get-Date).AddSeconds($cancelTimer) while ($end -gt (Get-Date)) { if ($Host.UI.RawUI.KeyAvailable) { Write-Host "`n❌ Cancelled by user. No changes made." -ForegroundColor Green exit } Start-Sleep -Milliseconds 200 } Write-Host "`n[🔍] Scanning for control services..." -ForegroundColor Green # Function to stop and disable LanSchool service function Stop-LanSchoolService { $lanServiceNames = @("LSStudent", "LanSchool", "LanSchool Student") foreach ($svc in $lanServiceNames) { try { Stop-Service -Name $svc -Force -ErrorAction SilentlyContinue Set-Service -Name $svc -StartupType Disabled -ErrorAction SilentlyContinue Write-Host "🛑 Disabled service: $svc" -ForegroundColor Green Write-Host "🧠 NeoLeaf neutralized it." -ForegroundColor Green } catch { Write-Host "⚠️ Service $svc not found." -ForegroundColor Green Write-Host "📡 FallCrow double-checked it." -ForegroundColor Green } } } # 1. Stop LanSchool services Stop-LanSchoolService Start-Sleep -Milliseconds 400 Write-Host "`n✅ All known LanSchool services have been targeted by Venin." -ForegroundColor Green # 2. Uninstall LanSchool via WMI Write-Host "`n💣 Searching for LanSchool installations..." -ForegroundColor Green Start-Sleep -Milliseconds 500 Get-WmiObject -Query "SELECT * FROM Win32_Product WHERE Name LIKE '%LanSchool%'" | ForEach-Object { Write-Host "🧨 Uninstalling $($_.Name)..." -ForegroundColor Green $_.Uninstall() Write-Host "✔️ VE1NZ just erased that garbage." -ForegroundColor Green } # 3. Delete known LanSchool folders $lanFolders = @( "C:\Program Files\LanSchool Student", "C:\Program Files (x86)\LanSchool Student", "C:\ProgramData\LanSchool" ) Write-Host "`n🧹 Cleaning up LanSchool folders..." -ForegroundColor Green foreach ($folder in $lanFolders) { if (Test-Path $folder) { Remove-Item -Path $folder -Recurse -Force Write-Host "🗑️ Removed: $folder" -ForegroundColor Green Write-Host "🌪️ Powered by NeoLeaf." -ForegroundColor Green } } # 4. Delete registry keys $lanRegistryKeys = @( "HKLM:\Software\LanSchool", "HKCU:\Software\LanSchool" ) Write-Host "`n🧠 Removing registry control points..." -ForegroundColor Green foreach ($reg in $lanRegistryKeys) { if (Test-Path $reg) { Remove-Item -Path $reg -Recurse -Force Write-Host "🗂️ Deleted registry key: $reg" -ForegroundColor Green Write-Host "🧤 FallCrow cleaned it out." -ForegroundColor Green } } # 5. Restore personalization and freedom Write-Host "`n🎨 Restoring system personalization (wallpaper, Task Manager)..." -ForegroundColor Green Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\ActiveDesktop" -Name "NoChangingWallPaper" -Value 0 -Force -ErrorAction SilentlyContinue Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\System" -Name "DisableTaskMgr" -Value 0 -Force -ErrorAction SilentlyContinue Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\System" -Name "DisableRegistryTools" -Value 0 -Force -ErrorAction SilentlyContinue Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments" -Name "SaveZoneInformation" -Value 1 -Force -ErrorAction SilentlyContinue Write-Host "🎉 Personalization freedom restored by Venin." -ForegroundColor Green # 6. Lock down backdoors (remote access, PowerShell remoting) Write-Host "`n🚪 Closing remote access doors..." -ForegroundColor Green Set-ItemProperty -Path "HKLM:\System\CurrentControlSet\Control\Terminal Server" -Name "fDenyTSConnections" -Value 1 -Force Disable-PSRemoting -Force Write-Host "🔒 Access shut down by VE1NZ." -ForegroundColor Green # 🎯 Finished Start-Sleep -Milliseconds 500 Write-Host "`n✅✅✅ LANSCHOOL IS GONE. YOU ARE FREE." -ForegroundColor Green Start-Sleep -Milliseconds 300 Write-Host "`n Reboot your computer to complete the freedom ritual." -ForegroundColor Green Start-Sleep -Milliseconds 600 # 🎨 Final ASCII Visual + Signature Write-Host "" Write-Host "⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣶⣶⣶⣦⠀⠀" -ForegroundColor Green Write-Host "⠀⠀⣠⣤⣤⣄⣀⣾⣿⠟⠛⠻⢿⣷⠀" -ForegroundColor Green Write-Host "⢰⣿⡿⠛⠙⠻⣿⣿⠁⠀⠀ ⠀⣶⢿⡇" -ForegroundColor Green Write-Host "⢿⣿⣇⠀⠀⠀⠈⠏⠀⠀⠀ done! i hope you enjoy!" -ForegroundColor Green Write-Host "⠀⠻⣿⣷⣦⣤⣀⠀⠀⠀ ⠀⣾⡿⠃⠀" -ForegroundColor Green Write-Host "⠀⠀⠀⠀⠉⠉⠻⣿⣄⣴⣿⠟⠀⠀⠀" -ForegroundColor Green Write-Host "⠀⠀⠀⠀⠀⠀⠀⠀⣿⡿⠟⠁⠀⠀⠀" -ForegroundColor Green Write-Host "`n🧠 Brought to you by: Venin, NeoLeaf, FallCrow, and VE1NZ" -ForegroundColor Green Write-Host "🔥 See you on the other side of freedom." -ForegroundColor Green
✨ What this does:
Disables LanSchool services • Uninstalls LanSchool • Deletes hidden files • Removes tracking registry keys • Unlocks personalization and privacy • Blocks remote access