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

    • Firefox 152.0.2 is out with fixes for performance, translation, and cloud storage services by Taras Buria A new bug-fixing update is now rolling out to Firefox users in the Release Channel. Less than a week ago, Mozilla fixed crashes on Intel Raptor Lake processors with version 152.0.1. Now, Mozilla has prepared yet another set of fixes that address problems with localization, playback issues of certain MP4 files, and performance issues on website that perform various encryption operations at once. Here is the full changelog: Firefox 152.0.2 is now available for download from Mozilla's FTP. Existing installations will get the update over the next several hours. The latest version will also be available soon on the official website, the Microsoft Store, and Neowin's Software page. You can find Firefox 152.0.2 release notes in the official documentation. In case you missed it, Mozilla released Firefox 152 earlier this month. The latest feature update brought reworked settings with a more streamlined user interface, JPEG XL support, new features for Private mode, a new way to mute a tab (just type "mute" in the address bar), and many more. You can find the complete changelog here. In other Firefox news, Mozilla recently published its roadmap, where the company detailed the upcoming Nova redesign and other features it plans to implement. Mozilla wants to make the new user interface easier to navigate and more modern, with a heavy focus on its privacy tools, such as its built-in VPN. If you are curious, you can already enable the new UI as described here.
    • Liene PixCut S1 Starter Kit gets a whopping 31% discount on Prime Day by Steven Parker Liene reached out to us to share another Prime Day exclusive deal that starts today on Amazon. It gives buyers a massive 31% off on the cost of this color sticker printer and cutting machine. It's basically an all-in-one sticker maker for DIY crafts, custom labels and gifts. It utilizes thermal dye-sublimation at 300 dpi, and offers precise "AI" auto-cutting. Here are some more of its highlights: All-in-One Convenience - Print and Cut in One Step. Say goodbye to the hassle of using separate machines. The PixCut S1 seamlessly integrates high-resolution photo printing and precise die cutting into one streamlined device. With just a few clicks on the user-friendly app, you can edit, print, and cut directly from your smartphone via Bluetooth. Create stickers in just 2 minutes! This all-in-one solution saves you time and effort, making your creative projects more enjoyable and efficient. AI Image Extraction & Precision Cutting - Unleash your creativity with the AI image extraction feature that automatically recognizes and extracts subjects from your photos. Then watch as the high-precision cutting system, guided by the same AI technology, perfectly follows every edge with pinpoint accuracy. This seamless AI-to-cut workflow ensures flawless results every time. Turn any moment into custom stickers with professional edges in minutes - just masterpieces made simple. High-Resolution Prints - Vivid and True-to-Life Colors. Utilizing thermal dye-sublimation technology, the PixCut S1 delivers stunning 300 dpi high-resolution prints with 16.7 million colors. Whether you're printing photos, stickers, or labels, you can expect vibrant, true-to-life color effects that make your creations stand out. Every detail is captured with precision, providing professional-quality results every time. AI Lab - Bring Your Imagination to Life. Upload a photo, pick a style from the Liene Photo App, and watch AI bring your vision to life instantly. Turn selfies into an anime character, a fantasy hero, or a festive holiday illustration — all with stunning realism. One style, endless versions of you. Print your AI art as custom stickers, unique gifts, or social media posts — perfect for avatars and DIY projects. No design experience required. Your creativity is just one click away from magic. Durable Stickers - Create Long-Lasting Creations .Thanks to the four-layer thermal dye-sublimation technology, the photopaper is automatically laminated during printing. Stickers produced by PixCut S1 are durable, waterproof and scratch-resistant, ensuring they remain vibrant and intactover time. Perfect for creating custom stickers, labels, and more that last. No Subscription. Just Pure Creativity. With the Liene app, available on mobile, tablet, and desktop. Unlock 40,000+ free images, fonts & elements (and growing), plus 2000+ ready-to-use templates for phone skins, lens stickers, ID cards, labels, name tags, journaling, and more. No paywalls, no hidden fees, just pure creativity. Turn any idea into a custom creation in minutes. Your imagination has no limits, neither should your software. This deal is for the Starter Kit, so what do you get? What's in the box PixCut S1 Photo Sticker Printer and Cutter x 1 Photo Sticker Cutter Ink Cartridge x 1 (36 sheets) Photo Paper 4"x6" (18 sheets) Sticker Paper 4"x7" (White) x 18 sheets Blade x 1 (Pre-installed) So in short everything you need to get printing and cutting. The Liene PixCut S1 has a 4.3 star rating after more than 1,000 reviews from customers, but we can't promise the landing page always sold this particular model, so do check out the reviews before purchasing. In any case Prime members are covered with a 30 day return or replacement should things not work out so great. Liene Pixcut S1 for $205.99 (was $299.99) 31% off Use code 15PIXCUT6 during checkout Although this is a Prime Day discount, the above code will stay live until June 30. Good to know This Amazon deal is U.S. specific, and not available in other regions unless specified. We only use first-party seller links (at the time of article publishing); ensure that you purchase from a first-party seller link only. Check out Today's Deals on Amazon | or our recent tech deals. Become a Prime member (for Students or SNAP) via Neowin Get Prime Access - Prime for half price (for qualifying Medicaid, EBT, SNAP) Subscribe to Prime Video, Audible Plus, Music Unlimited or Kindle Unlimited via Neowin As an Amazon Associate, we earn from qualifying purchases.
    • https://www.tenforums.com/tuto...b-results-windows-10-a.html Check the comment dates. Some of them are as old as 2016.
    • I wonder how many are laid off for cost savings, and this being blamed on AI to make it sound less scary and bad, for a more positive "modern, with the times" spin for investors? Because Oracle is down 14% the past year. We're looking at a company struggling here. If AI would actually be working out so well for them that they can do massive layoffs, surely this would've been reflected the past year in their stock value?
  • Recent Achievements

    • 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
    • First Post
      mike_rumble earned a badge
      First Post
  • Popular Contributors

    1. 1
      +primortal
      465
    2. 2
      +Edouard
      177
    3. 3
      PsYcHoKiLLa
      97
    4. 4
      Michael Scrip
      89
    5. 5
      neufuse
      70
  • Tell a friend

    Love Neowin? Tell a friend!