Final Fantasy VII Rebirth kept crashing until I increased my Windows virtual memory settings from a 4GB limit to an 8GB minimum and 16GB maximum. I have 64GB of system RAM, an RTX 5080, an Intel i7-14700K, a 2TB SSD, and I was playing at 4K with maximum settings. Increasing the pagefile fixed the crashes, but I'm confused about why Windows needed additional virtual memory at all with so much physical RAM installed. Could the game be using enough RAM, VRAM, and committed memory together to hit the pagefile limit, or is this more likely a game, driver, or DirectX 12 issue?
2 Answers
The game can use system RAM, VRAM, shader caches, mapped files, and other committed allocations at the same time. DirectX 12 games may also reserve memory ahead of when they need it, and some titles or drivers handle memory pressure badly. With an RTX 5080, 4K maximum settings can still create substantial VRAM and asset-streaming demands. Increasing the pagefile does not make the hardware faster, but it raises the commit limit and can prevent an allocation failure. Leaving the pagefile system-managed is usually safer than forcing a very small fixed limit, especially on a system with a fast SSD.
Virtual memory is disk space reserved for Windows’ memory-commit system; it isn’t the same thing as physical RAM or the RTX 5080’s VRAM. Even with 64GB of RAM, Windows and applications can reserve more committed memory than is currently resident in RAM. A pagefile also gives Windows somewhere to move less-active memory and provides commit headroom when an application temporarily allocates a large amount. A 4GB maximum may simply have been too restrictive for this game at 4K ultra settings. That doesn’t necessarily mean the machine was literally using all 64GB at the moment of the crash.
That makes sense. I was thinking of the pagefile only as emergency overflow, but it sounds like Windows also uses it to satisfy committed allocations and manage memory even when plenty of RAM is installed.

The specifications suggest this probably isn’t a lack-of-RAM problem by itself. I’d also update the GPU driver and game, check Task Manager or Resource Monitor for committed memory and VRAM usage during play, and consider lowering texture quality or a few demanding settings if the crashes return.