| Paper: | 1 | 2 | 3 | Advanced Search |
| If you want... | Solution | |---|---| | To see if an .exe was originally a batch script | Try opening it in a text editor (Notepad). If you see readable commands, it might be a self-extracting script. But usually you’ll see gibberish. | | To recreate functionality of an .exe as a .bat | Write a new .bat from scratch based on what the program does. | | To edit a batch script you previously turned into .exe | Find and edit the original .bat source file you started with. |
For password-protected or more complex wrappers, use Process Explorer . Open the process properties. Check the Strings tab and select Memory . Scroll through to find readable script commands. 2. Embedding an EXE into a BAT File convert exe to bat
If you can’t find it, you must rewrite the script from memory. | If you want