Concerning the memory issue, just ignore it. I found that I would only get that message when I was experimenting with disabling the pagefile to possibly save my solid-state drive until I read more about it and saw mostly recommendations to leave it on no matter how much RAM you have.
Yes, you are correct. The page file should not, in fact never be disabled. It's more than just extending your RAM, that is only 1 function of it, but it also provide the ability of defrag open space.
PageFile
The reason why you never want to disable pagefile, AND want it to be AT LEAST the size of your RAM is simple:
Your RAM needs to defragment itself, but when we talk about fragmentation, we are not talking about data being split up, but rather empty space. Let me explain,
A running program is called a process. When a process runs it consumes a certain amount of memory on your RAM. That capacity stays always in 1 block, and can't be cut into peaces like a file on your HDD. So in a way it never fragments. Great! Also, for many and complicated reasons that I won't cover, the block of memory that a process occupies cannot be moved while the program(s) is/are running. Ok, right.
But, this means that by doing this it fragment itself.. Wait what? Yup!
It fragment empty space. Basically you have plenty of empty space blocks separated, and not together as you open and close programs.
Let's have a look at what happens (in a simple way)
- Process A consumes 10% of your RAM.
- Process B consumes 40% of your RAM.
- Process C consumes 5% of your RAM.
- Process D consumes 30% of your RAM.
- Process E consumes 5% of your RAM.
- 10% Free space after Process E to the end of your memory.
Total: 90% used, 10% free.
Now, you close Process C. So now, as nothing can move, you have a 5% free space hole in your RAM. In total, you have 15% of free space.
Now, you open Process F, which consume 15% of your RAM. Well you are out of RAM. Because while you have the space, it doesn't fit into 1 block. Remember nothing can move. You have fragment free space. So you get a low memory error, despite having plenty of free space.
What normally happens in such situation is that Windows (or wtv OS you use) flushes out the RAM clean. And copies pagefile to your RAM in a organize clean way (defragmented).
Your page file is a backup of your RAM. Everything you put on your RAM is duplicated on your pagefile, to make this perform the fastest as possible (else it would need to copy the RAM to your HDD or SSD and then flush it, and copy the page-file back to the RAM. We know how much time it takes transferring several GB of data, it sure isn't instant especially using an HDD.
But why the backup? I can wait! you say.
Well it's because, anything that isn't in your RAM, can't be processed by the CPU. So, your system will temporally lock up, as your RAM will be emptied.
Now, Windows (well Vista and up) is smart. To hide this, it will first priorities key component of the OS, related to the user interface and your interaction with the system, by transferring that, first onto your RAM, this will make it invisible to you as its just a few MB and everything else will follow, with some fancy algorithm on what you are currently using, and other guess work. Pretty smart.
In the old old days back when we had 128/256MB of RAM with XP or older, you might recall that your system, after starting a program, just becomes unresponsive for a moment (temporarily freezes), and comes back to normal. When this occurred, your system was doing this process.
So lesson: People that tell you to disable page-file (and it's not for a specific reason), and your not using a legacy OS are, well, don't know what they are talking about.
This advice, actually was seen as good one (in the sense of acceptable), back in XP days, where XP dump everything it can to pagefile only, to maximize empty space on your RAM. This was critical back in the days as RAM was limited, for what we were doing with our computers. Sadly XP, doesn't auto-adapt. If you have high capacity of RAM (1GB of more) it still acts as if you had little memory and dumped everything to page file. So, to have a more responsive experience, people, at the risk of having what you experience, disabled pagefile.
Since Vista, this is not the case. Vista and up priorities RAM first. Once the RAM is filled, pagefile is used to extend the RAM. That is another reason why Vista performance was terrible on system that didn't have 2GB or more of RAM, which is what most people had when they put Vista on their system (they had 1GB of RAM, or 2GB, which 2GB being the limit, you needed 4GB for a smooth experience, not to mention 256MB of RAM of dedicated GPU memory (as system RAM was too slow, unless the OEM was too cheap and put standard DDR1 or DDR2 for the graphic card and not GDDR3), and pixel shader 2.0, but that's a different topic).
---------
SSD durability concern
That being said, you should not worry about the life of the SSD of your Surface Pro.
First of all, SSD's have improved in durability CONSIDERABLY, like it's not even funny, since it's early days back in its early days. Durability was top priority for all manufactures of SSDs, controllers, and chip manufactures. All working together. Now, on the consumer market, you have different types of SSDs: TLC (Samsung 840, and EVO series are the only SSD so far on the market that uses these chips). This is the worst chips you can get in terms of durability. It doesn't mean they are bad at all. But if you trash them with writes, like really trash them with writes, more than the normal system operation. I would not trust it after 3 years. They are designed for standard office computers or media center computer. If you are a programmer or running a server, or doing video encoding or stuff like that.. not a good SSD for such task. Assuming it has that (it doesn't as it's only Samsung uses these chips, and it doesn't have a Samsung SSD), already at 3 years, will you keep your Surface Pro 2?
Then you have the polar opposite, which I believe this is what the Surface Pro 2 has, due to it's performance. They are the fastest SSD's around, and they are tanks in durability (they are also used in the PCI-E version of SSD's). They are MLC synchronous nand chips in configuration form. You can identify them with their 5 year warranty in retail space. You can trash them like no tomorrow, and they should pass 9 years no trouble. You will definitely not have your Surface Pro 2 by then.
Finally, you have the in between model: MLC asynchronous ones, which are the rest of the SSDs and those last in between the 2 above. By then you will for sure have another Surface Pro. Will safely last 5 years if not more.
The above, of course, assumes no manufacture errors, and time is estimated. We don't have a time machine, or I don't think you want to wait 9 years to see what will happen for sure.