What's the replacement for REBASE.EXE?

前端 未结 3 1148
遥遥无期
遥遥无期 2020-12-16 18:57

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

3条回答
  •  借酒劲吻你
    2020-12-16 20:00

    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.

提交回复
热议问题