Created
July 26, 2017 17:21
-
-
Save eMdOS/bc893c3edc4a4c07a184609cc3fba513 to your computer and use it in GitHub Desktop.
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 | |
title Flash Memory | |
color 1E | |
@echo ---------------------------------------------- | |
@echo ------------- Memory Flash Fixer ------------- | |
@echo ---------------------------------------------- | |
@echo Changing Folder Attributes... | |
Attrib /d /s -r -h -s *.* | |
@echo ---------------------------------------------- | |
@echo Deleting Links | |
if exist *.lnk del *.lnk | |
@echo ---------------------------------------------- | |
@echo Deleting Autorun... | |
if exist autorun.inf del autorun.inf | |
@echo ---------------------------------------------- | |
@echo Operation OK... | |
@echo ---------------------------------------------- | |
@echo ---------------------------------------------- | |
@echo By eMdOS... | |
@echo ---------------------------------------------- | |
@echo ---------------------------------------------- | |
@echo Have a nice day... Good luck !! ... | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment