Reducing Windows 8 footprint


Recommended Posts

Attached is a screenshot of the available free space on my SSD and what is taking up that space. Anyone know how I can reduce the footprint of Windows 8 so I have more space freed up?

post-65970-0-58114800-1367162508.png

Link to comment
Share on other sites

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".

Link to comment
Share on other sites

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
Link to comment
Share on other sites

You're welcome.

I also remove msocache, intel, amd/nvidia folders from system root and periodically empty "C:\Users\"name"\AppData\Local\Temp" and "C:\Windows\Temp" folders.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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

I moved the paging file to my hard drive.

Link to comment
Share on other sites

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
Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.

This. . .

Link to comment
Share on other sites

Did you right click on C:/ -> Properties -> Disk Cleanup -> Cleanup System Files

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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".

Link to comment
Share on other sites

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

    • No registered users viewing this page.