Yes, I set it to 1Gb on every one of my mechanical drives.
A friend of mine recently had a series of blue screens caused by having multiple page files on different drives.
It gave the error Page Fault in Non-paged Area
. It stopped happening when he moved it to one drive.
I'm just saying. If you start seeing issues with that error, do that first.
@Netami If you wish to minimize the OS usage of your drive, disabling hibernation is the first thing to do. The next thing is to remove all Windows Updates cached files once you are fully updated. The safest way to do that is to just do a Disk Cleanup on the drive and allow it to remove System Files. You've probably done this. I'm just mentioning it in the off-chance you haven't heard of or done that yet.
Another thing I do that's a bit more advanced is to move directories that tend to get large to a mechanical hard drive and create a junction to their original location.
For example, Chrome takes up a lot of space in AppData. I log out and log in as the Default Administrator, copy the Chrome AppData to a location on another drive, delete the old Chrome AppData folder, then create the junction to the original location.
Specifically, a junction is a redirect. It's saying "ok, now go to this other path to get your files." This can be a bit confusing, but programs usually don't question it and do so fine.
So, say I have my Chrome AppData folder in the following path: C:\Users\user\AppData\Roaming\Chrome
and I want to move it to U:\user\AppData\Roaming\Chrome
because U: is a mechanical drive.
I would log in as the default administrator (you have to enable it in Computer Management to access that account, usually). Create the folders (i.e. U:\user\AppData\Roaming) then I would open Command Prompt or Powershell and do the following commands:
cd C:\Users\user\AppData\Roaming
robocopy /e /copyall /SL /R:1 /W:15 Chrome U:\user\AppData\Roaming\
rmdir /S Chrome
mklink /J Chrome U:\user\AppData\Roaming\Chrome
First you move to the Roaming directory to make typing easier.
Then you copy all files with robocopy preserving file permissions and information to the mechanical hard drive's Roaming.
Then you delete the entire original Chrome folder.
Then you create the Junction to the Chrome folder on the mechanical drive.
You can do this safely with anything that isn't a system file. i.e. can't do it with Program Files folder. I mean, you can, but don't. Please please don't.
I usually do it to my entire user folder. Because, usually, those files don't need to be fast because they are small.
Once you've done that, if you go to look at the C:\Users\user\AppData\Roaming\Chrome
folder, it will have a shortcut icon on it.
If you click it and enter it, File Explorer says it's at C:\Users\user\AppData\Roaming\Chrome
, but if you create a file here, it will be in U:\user\AppData\Roaming\Chrome
because that's where you actually are. That's why it can be confusing, but it's very useful.