Learn how to change *.exe files, in 5 easy steps:
1) Don't try to modify a program by editing his source in a dissasembler. Why?
Cause that's for programmers and assembly experts only.
Try to view it in hex you'll only get tons of crap you don't understand.
First off, you need Resource Hacker. It's a resource editor-
very easy to use; you can download it at Download Recource-Hacker
2) Unzip the archive, and run ResHacker.exe. You can check out the help file too
3) You will see that the interface is simple and clean. Go to the menu File>Open or press Ctrl+O to open a file. Browse your way to the file you would like to edit. You can edit *.exe, *.dll, *.ocx, *.scr and *.cpl files, but this tutorial is to teach you how to edit *.exe files, so open one.
4) In the left side of the screen a list of sections will appear.
The most common sections are
-String table;
-RCData;
-Dialog;
-Cursor group;
-Bitmap;
-WAV.
*Icon: You can wiew and change the icon(s) of the program by double-clicking the icon section,chossing the icon, right-clicking on it an pressing "replace resource". After that you can choose the icon you want to replace the original with.
*String table: a bunch of crap, useful sometimes, basic programming knowledge needed.
*RCData: Here the real hacking begins. Modify window titles, buttons, text, and lots more!
*Dialog: Here you can modify the messages or dialogs that appear in a program. Don't forget to press "Compile" when you're done!
*Cursor group: Change the mouse cursors used in the program just like you would change the icon.
*Bitmap: View or change images in the programs easy!
*WAV: Change the sounds in the program with your own.
5) In the RCData, Dialog, Menu and String table sections you can do a lot of changes. You can modify or translate the text change links, change buttons, etc.
TIP: To change a window title, search for something like: CAPTION "edit this".
TIP: After all operations press the "Compile Script" button, and when you're done editing save, your work @ FileSave(Save as).
TIP: When you save a file, the original file will be backed up by default and renamed to Name_original and the saved file will have the normal name of the changed program.
TIP: Sometimes you may get a message like: "This program has a non-standard resource layout... it has probably been compressed with an .EXE compressor." That means that Resource Hacker can't modify it because of its structure.
Modify .exe files
Posted by Gautam Aggarwal on Saturday, November 22, 2008Hide in the (Network) Neighbourhood
Posted by Gautam Aggarwal on Saturday, November 22, 2008Don't want your XP computer to show up in the network browse list (Network Neighborhood/My Network Places) to other users on your network? One way to accomplish that is to disable file sharing.
To do this, click Start, right click My Network Places and select Properties.
Right click your local area connection and click Properties.
Uncheck the box that says File and Printer Sharing for Microsoft Networks.
Click OK.
But what if you want to be able to share folders with some users; you just don't want everyone on the network to see your computer's shares? There's a way:
Click Start and select Run.
In the Run box, type net config server /hidden:yes
Click OK.
Now others who know the UNC path (\ \ computer name\ share name) can connect to your computer's shares from the Run box, but it won't show up in the network browse list.
Access Your Folders From Your Taskbar
Posted by Gautam Aggarwal on Monday, November 17, 2008This is an easy way to get to the folders on your system without having to open a Windows Explorer Window every time you want to access files. I find it very useful to have this feature as it allows me to access my Folders and Drives immediately and saves me a lot of time.
1. Right Click an empty spot on your Taskbar (Between your Start Button and your System Tray).
2. Click Toolbars.
3. Click New Toolbar.
4. A Small Window will Open that allows you to pick the folder you wish to make a Toolbar. If you want to access your Desktop Without having to minimize all your windows. Just Pick Desktop. If you want to access ONLY your My Documents Folder, Select that. Any folder will work for this.
5. Click OK.
The New Tool bar will appear at the bottom of your screen next to your System Tray.
If you find this to be not useful, Repeat Steps 1 and 2 and then check click the Toolbar you created that has a check mark next to it. And it will disappear.
Trace websites
Posted by Gautam Aggarwal on Saturday, November 15, 2008Bulk Editing Of .xxx to .zip or .mp3
Posted by Gautam Aggarwal on Sunday, November 09, 2008Lets us say you have just download a new album or game
but all the files are .xxx and you need them to be
zip's, rar's, mp3's etc.....
then do the following
-create a new folder
-put all the files needing editing in the new folder
-then goto "run" in the start menu
-type in CMD and click ok
-the next thing needs a few bits of old DOS commands
-you need to navigate CMD to the folder where the files are
-you can do this by first getting the total address of the folder
-and then typing it in cmd with a "cd" in front
QUOTE
cd c:\xxx\yyy\ccc\
once you in the folder where the files are you can move on..
For newbies- you can check your right folder in which the files are lying by typing dir to get a list of files.
-now type in....
QUOTE
rename *.* *.zip
Nb change the zip to what ever the extention needs to be (.rar, .mp3 etc)
all done
you should have now changed the .* to what ever you needed
happy downloading!!!
To exit CMD type in "exit"
