TLDR: Insufficient Memory during build when you have plenty of RAM/storage is because one of your paths is hitting the Microsoft path length limit, which causes xcopy to fail.
I was going to post my issue here but after diagnosing it more and modifying the build.bat file I managed to figure it out.
I was getting "Insufficient Memory" during the Copying Resources stage of the build, which was perplexing because I had over 32GB RAM free and over 10TB of storage left. So I thought maybe it was a 32-bit issue and some process was hitting the 2 or 4GB hard limits, but nope. The same exact build & setup worked perfectly fine on my dev machine, and was only failing on the build machine.
So I started looking at the build.bat file, and found the Copy Resources stage which was utilizing xcopy. I took out the '> nul' bit in the xcopy command so I could see what file it was failing on, and turns out it was because good ol Unity Addressables creates gargantuan file paths by default. The oh so helpful "Insufficient Memory" error xcopy provides is actually because the file path is too long. So that's lovely.
I already knew long file paths were a nightmare in Windows so I try to avoid that when I can (the project folder was D:/XYZ/ so super short) but Unity of course decides to generate addressable asset paths that are hundreds of characters long.
I may just change the batch file to use robocopy as I believe that has no such limitation.
So anyway, if anyone else runs into this problem, and you have plenty of RAM/storage, it's the file path length limit causing it. I didn't see this posted anywhere so figured I'd leave it here for future readers.