Recommended Posts

Delete all files from "C:\Windows\SoftwareDistribution\Download", I always do that and no harm is done, it's where windows downloads updates (setup files).

You can also reduce hibernation file, run cmd as admin and type "powercfg ?h ?size 50%", or disable it completely if you don't use it "powercfg ?h off".

Delete all files from "C:\Windows\SoftwareDistribution\Download", I always do that and no harm is done, it's where windows downloads updates (setup files).

You can also reduce hibernation file, run cmd as admin and type "powercfg ?h ?size 50%", or disable it completely if you don't use it "powercfg ?h off".

Thanks for the suggestion about the software distribution download folder. I already did reduce the hibernation file, it used to like 12GB before. :p

  • Like 1

I am not sure if you have done this already, but try Disk Cleanup to get rid of anything left over from a Windows 8 upgrade process, or installation temporary files, and all those system related files you do not need.

I think when I did the Windows 8 upgrade, I was able to clean out 15-20GB from Disk Cleanup.

Did you disable the paging file? With an SSD, the paging file is a waste of space.

I'm not sure I follow you there. The paging file is to swap things to and from ram. If you have enough ram ok fine, disable it. However, an SSD alone is not a reason to disable it.

Maybe you meant indexing?

  • Like 2

I'm not sure I follow you there. The paging file is to swap things to and from ram. If you have enough ram ok fine, disable it. However, an SSD alone is not a reason to disable it.

Correct.

I'd argue to leave the page file on the SSD, why page data from your super-fast RAM into your slower hard drive? Sounds like a performance hit.

You should probably leave the page file enabled IMO.

create a new shortcut that goes to "%SystemRoot%\System32\cmd.exe /c cleanmgr /sageset:65535 & cleanmgr /sagerun:65535" and run it as administrator. it's a more comprehensive version of disk cleanup. but don't check the Windows ESD Files - that's the refresh windows files.

Correct.

I'd argue to leave the page file on the SSD, why page data from your super-fast RAM into your slower hard drive? Sounds like a performance hit.

You should probably leave the page file enabled IMO.

That's not how it works...

Even if you turn the paging file off, Windows will allocate temporary space if it's needed.

The OP's sig says he has 12GB of RAM, so more than likely, Windows created a ~6GB paging file, which is basically wasted space.

On a regular HDD, disabling the paging file may cause your system to hang if Windows tries to allocate space, due to the long access times of HDDs. That problem doesn't exist on a SSD, so disabling it does nothing except save space.

I've disabled the paging file on all my PCs for years and years and never had a single problem.

The OP asked on how to save some space, and this is the simplest way to gain back a large chunk.

That's not how it works...

Even if you turn the paging file off, Windows will allocate temporary space if it's needed.

The OP's sig says he has 12GB of RAM, so more than likely, Windows created a ~6GB paging file, which is basically wasted space.

On a regular HDD, disabling the paging file may cause your system to hang if Windows tries to allocate space, due to the long access times of HDDs. That problem doesn't exist on a SSD, so disabling it does nothing except save space.

I've disabled the paging file on all my PCs for years and years and never had a single problem.

The OP asked on how to save some space, and this is the simplest way to gain back a large chunk.

No, Windows does not allocate temporary space if needed. This is myth.

Windows will simply fail malloc requests once OOM - this causes hilarious issues with poorly coded software.

Also, I have no idea how to use more than 9GB RAM.

Even running the worst coded game of all time (Minecraft - ~7GB RAM), doesn't send me to 10GB.

So the page file is not needed.

No, Windows does not allocate temporary space if needed. This is myth.

Windows will simply fail malloc requests once OOM - this causes hilarious issues with poorly coded software.

Also, I have no idea how to use more than 9GB RAM.

Even running the worst coded game of all time (Minecraft - ~7GB RAM), doesn't send me to 10GB.

So the page file is not needed.

I fill up every bit of my 16GB when I use Adobe After Effects and some very very very large Photoshop documents like to take up quite a bit of RAM too. Would you leave page file turned on in those cases?

I would not say Minecraft is the worst coded game of all time. At least it runs. Last time I tried playing The Amazing Spiderman on Steam, it crashed every 30 minutes. I gave up fighting with it. I wasted $60.

I fill up every bit of my 16GB when I use Adobe After Effects and some very very very large Photoshop documents like to take up quite a bit of RAM too. Would you leave page file turned on in those cases?

I would not say Minecraft is the worst coded game of all time. At least it runs. Last time I tried playing The Amazing Spiderman on Steam, it crashed every 30 minutes. I gave up fighting with it. I wasted $60.

turning off page file is stupid in every case. there's a reason Windows doesn't already disable it automatically when it detects certain conditions, and the people who designed it that way sure as hell know a lot more about how Windows works than random people on the internet that repeat decades old snake oil advice. like _Alexander said, disabling the page file results in bad consequences when a poorly written program suddenly decides it needs it (not just because there's no memory left, some stuff uses the page file regardless). if you're finding that the space the page file takes up is a problem, what you need is a bigger drive.

turning off page file is stupid in every case. there's a reason Windows doesn't already disable it automatically when it detects certain conditions, and the people who designed it that way sure as hell know a lot more about how Windows works than random people on the internet that repeat decades old snake oil advice. like _Alexander said, disabling the page file results in bad consequences when a poorly written program suddenly decides it needs it (not just because there's no memory left, some stuff uses the page file regardless). if you're finding that the space the page file takes up is a problem, what you need is a bigger drive.

Reality check,

To write such a "poorly written program" you would have to explicitly research how to write to the page file.

Two additional things,

1. Running poorly written programs is generally not recommended for a variety of reasons.

2. Your lack of a concrete example of a useful piece of software that does this is contrary to your argument.

Reality check,

To write such a "poorly written program" you would have to explicitly research how to write to the page file.

Two additional things,

1. Running poorly written programs is generally not recommended for a variety of reasons.

2. Your lack of a concrete example of a useful piece of software that does this is contrary to your argument.

easiest thing you'd have to do is write a program that requests an insane amount of RAM despite not intending to actually use any, that's not exactly hard to do. the existence or lack of an example has no bearing on the truth of the statement, its absence merely fails to offer direct evidence for it, that doesn't contradict anything stated at all. I can't think of any examples off the top of my head, because a) I don't disable mine, and b) i try not to run ****ty programs. But you have to be dreaming to assume that every single thing that someone might need is properly written. in fact, is it not the case that the more niche and critical a piece of software is to someone's particular purpose, the more likely it is that it's poorly written? Not everything has readily available alternatives, and the ones that don't are especially likely not to be of high quality. Considering the fact that there's no benefit whatsoever in disabling the page, why would you go take such an unnecessary risk, whether it's likely to manifest or not? the bottom line is that it's pointless even if it's not harmful at all.

easiest thing you'd have to do is write a program that requests an insane amount of RAM despite not intending to actually use any, that's not exactly hard to do. the existence or lack of an example has no bearing on the truth of the statement, its absence merely fails to offer direct evidence for it, that doesn't contradict anything stated at all. I can't think of any examples off the top of my head, because a) I don't disable mine, and b) i try not to run ****ty programs. But you have to be dreaming to assume that every single thing that someone might need is properly written. in fact, is it not the case that the more niche and critical a piece of software is to someone's particular purpose, the more likely it is that it's poorly written? Not everything has readily available alternatives, and the ones that don't are especially likely not to be of high quality. Considering the fact that there's no benefit whatsoever in disabling the page, why would you go take such an unnecessary risk, whether it's likely to manifest or not? the bottom line is that it's pointless even if it's not harmful at all.

The lack of evidence allows me to discard your statement without any evidence.

That is,

if you say "Although I have no evidence, Microsoft spies on its users through USB cameras" - there is no need for me to provide evidence for the contrary.

I can simply dismiss this assumption of yours without any evidence.

AFAIK malloc may actually allow a program to do that without allocating that amount of memory. That is it will only actually allocate that memory when it is being written to.

You said "suddenly decides it needs it (not just because there's no memory left" and now you are backing away from that statement.

"insane amount of RAM" is not explicitly manipulating the page file.

For a program swap and RAM are nothing more than a singular large pool of memory to use. I advocate only have the fast (RAM) memory without the slow (PF) memory for everyone who has a good or insane amount of memory.

When it comes down to it you are advocating running Windows in, essentially, "compatibility mode" to allow it to trash your HDD when a rouge and/or idiot made 64-bit application goes haywire instead of keeping the application entirely in memory

and killing it off sooner (before the Windows will start allocating more and more HDD space for the rouge application).

Thus, as an SSD and 32GB RAM user, I cannot agree with the statement that "there's no benefit whatsoever in disabling the page".

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Those extra reboots are related to the UEFI Secure Boot certificate update thing.
    • Hands on with the ProtoArc EM25: Affordable ergonomic mouse that focuses on the right things by Taras Buria ProtoArc is known for making all sorts of office products with a big focus on ergonomics and comfort. Its latest product, the EM25, promises a comfortable-to-use, affordable, and customizable mouse. We took one for a spin; here are our impressions. The ProtoArc EM25 is a $49.99 mouse, but right now, during Prime Day 2026, you can get it for just $37.99. Right off the bat, you can see that the EM25 is inspired by Logitech's MX Master lineup and the legendary MX Master 3/3S. Its shape and proportions are very similar, so for a person with large hands (right-handed person, mind you), the EM25 is very comfortable to use. The mouse fills the palm, and the thumb rests on a small extension, giving your wrist a small tilt to reduce strain. The mouse is made of black plastic without any coating, eliminating long-term wear concerns. However, I can see the main buttons and other areas you touch the most getting polished over time. Despite its size and bulk, the mouse is not too heavy. It weighs about 100 grams, which is significantly less than the MX Master 3S and its successor. It is no lightweight gaming mouse by any means, but it is not excessively heavy like the MX Master 4. The EM25 has a built-in storage for its USB dongle. It is a cleverly made magnetic flap that you open by simply pressing on it. Next to the flap, you will find the on/off switch, the 1,000 Hz sensor, and a DPI button (up to 8,000 DPI). I find the DPI button location a bit odd, and I would prefer it somewhere below the main scroll wheel. Still, given that I never change DPI on my mice, I will let it pass. What is more important is that, unlike MX Master 3/3S/4, the device switch button is located below the left-click button, which allows you to switch devices without lifting and flipping the mouse. For a multi-device setup, this is a perfect solution: the button does not require too much effort to use, it does not get in your way, but it is also easily reachable with your thumb. The main scroll wheel has two modes: ratcheted and free-flow. You can only change between them with a bright orange button (I like this little touch of color), which is sprung and requires some effort to press. The wheel is dead-silent in free-flow mode, but ratched is quite loud and stiff, perhaps even too much to my liking. I can hardly call it deal-breaking, but it will certainly take some time to get used to. The side scroll wheel, it is notched, silent, and pleasant to use. Next to it, you can find a piece of glossed plastic with connection indicators: Dongle, Bluetooth 1, Bluetooth 2, and the low battery indicator. By the way, the built-in battery is rechargeable via a USB Type-C cable, which is included. It is sleeved and has an orange velcro strap to keep it tidy. After using the EM25 for a few weeks, I can say that its main buttons are my absolute favorite. They have very pronounced clicks, which feel great with just the right amount of force required to register a press. I would say they feel like something in between regular mouse clicks and silent ones. You can hear and feel the springy switch, but it is not sharp or loud to the point of annoying you. As for back/forward and device switch buttons, they are very clicky and quite noisy. Unfortunately, there are no extra buttons that you can map to specific things like in the MX Master lineup. Besides great primary clicks, another thing I like about the EM25 is its 1,000 Hz sensor. In the world, where Logitech still uses 125 Hz sensors in $100+ mice, seeing a much faster sensor in a mouse that costs three times less is very refreshing. Also, all the settings and customization you make are stored on-device, and you do not need to install any software. Just open the web-based app and change all that you need. Speaking of customization, you can remap what buttons do, adjust the DPI, and the sensor speed. Sadly, gestures are not supported, but you can still map pretty much anything to each button, including shortcuts, media buttons, and more. I also recommend using software like XMouseControl, as it will let you remap the side scroll wheel. At the end of the day, the ProtoArc EM25 is a great mouse. Clearly inspired by the MX Master lineup, it takes the best of it and complements it with a much more wallet-friendly price tag, significantly better sensor, on-device memory, a built-in storage for the dongle, and more (it fixes everything that I complained about the MX Master 4 recently). And for only $37.99 during Prime Day, the EM25 is an easy recommendation. Buy ProtoArc EM25 mouse - $37.99 | 24% off with Prime As an Amazon Associate, we earn from qualifying purchases.
    • Pretty nice tool, thanks
    • Indeed. But note that this has Wifi7, HDMI 2.1, BlueTooth 5.4, and 5G Ethernet, so even in the additional features list this bundle blows the Steam Machine away. And, with the money saved, one could improve this dramatically.
  • Recent Achievements

    • Dedicated
      HidekoYamamoto94 earned a badge
      Dedicated
    • One Month Later
      timbobit earned a badge
      One Month Later
    • One Month Later
      nates earned a badge
      One Month Later
    • Week One Done
      Almohandis earned a badge
      Week One Done
    • Rookie
      dorf went up a rank
      Rookie
  • Popular Contributors

    1. 1
      +primortal
      460
    2. 2
      +Edouard
      161
    3. 3
      PsYcHoKiLLa
      107
    4. 4
      Michael Scrip
      83
    5. 5
      Steven P.
      70
  • Tell a friend

    Love Neowin? Tell a friend!