Last active
October 13, 2023 20:08
-
-
Save Elepover/1bbc559231c1c158b743e9ef6f765333 to your computer and use it in GitHub Desktop.
Script to delete FlashHelperService and prevent it from coming back again
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
REM Made by Elepover | |
REM Using WTFPL | |
set FILENAME=%SYSTEMROOT%\SysWOW64\Macromed\Flash\FlashHelperService.exe | |
title See ya, FlashHelper! | |
echo Detecting permissions... | |
net session >nul 2>&1 | |
if %errorLevel% == 0 ( | |
echo Permission granted, moving on... | |
) else ( | |
echo Permission not granted, please run the script as administrator. | |
goto DONE | |
) | |
echo Muting the moron... | |
taskkill /f /t /im FlashHelperService.exe | |
echo Destroying it... | |
del /f /s /q %FILENAME% | |
echo Permanently removing its seat... | |
sc delete "Flash Helper Service" | |
echo Preventing it from spawning again... | |
mkdir %FILENAME% | |
echo IN (NO F@CKING) MEMORY OF > %FILENAME%\Grave.txt | |
echo FlashHelperService.exe >> %FILENAME%\Grave.txt | |
echo Done! | |
:DONE | |
echo Press anywhere on your keyboard to continue. | |
pause >nul |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment