I have a need to rebase the group of DLL files that I install with my program, because it\'s a 32-bit program and the address space is just too fragmented right now. Also t
The reason Rebase.exe is deprecated is that it's not as useful as it used to be. Starting with Windows Vista, Microsoft implemented Address Space Layout Randomization which moves the system DLLs around every time you load them, and optionally the user DLLs as well.
If you're counting on rebasing to generate a large contiguous address space, you're going to be disappointed.