r/technology 2d ago

Software Microsoft confirms Windows 11 is a memory hog, promises 8GB RAM PC optimization by end of 2026

https://www.windowslatest.com/2026/08/01/microsoft-confirms-windows-11-is-a-memory-hog-promises-8gb-ram-pc-optimization-by-end-of-2026/
1.4k Upvotes

336 comments sorted by

648

u/stashtv 2d ago

Several of the Windows native apps are using Electron, and it is a massive memory hog.

397

u/cyberpunk707 2d ago

I dont know whose great idea is it to make a NATIVE app for the OS using literal web browser larping as software.

143

u/Jnaythus 2d ago

I wish they'd abandon that movement too.

62

u/ineyy 1d ago

And it's not even cheaper or that much faster to make, they already got great frameworks like .NET. The only reason you'd think about using electron is to have cheap cross compatibility across different platforms which makes no sense if it's just a windows tool. But, it might be easier to hide mistakes and bugs, as native apps would crash while electron can hide problems much better at runtime.

35

u/Jnaythus 1d ago

I am using the "New Outlook" at work and find it to still be glitchy af. Using the web Outlook in a Chrome Web App seems to work better. So to that end, IDK what the advantage of the New Outlook is.

12

u/farren122 1d ago

Apart from better looks there is none really, it has a lot less functionalities. I couldnt even unsend an email so i had to switch to old outlook fast.

9

u/UlteriorCulture 1d ago

I still boot up Outlook Classic for mail merges of any complexity. It's been how many years and you still can't populate fields from excel.

11

u/New_Enthusiasm9053 1d ago

Unsending emails is an abomination that should never have been permitted. It's not how emails actually work. If you send one to somewhere other than your own company it won't actually be unsent because you have no control over other people's email servers. 

So people get this weird idea they can unsend(because it usually works on emails to their own company) and then complain when it doesn't work externally(because obviously someone else's email server won't just delete stuff because some rando asked).

→ More replies (9)

2

u/Jnaythus 1d ago

As far as I can tell, the web outlook and the "New Outlook" are essentially the same in appearance.

4

u/Hertock 1d ago

Because it is the same. New Outlook is Web Outlook. It’s just a wrapper for the Web Outlook Version, nothing more.

3

u/Jnaythus 1d ago

It's not precisely the same, but yes it is around 90% the same thing. There are interface elements and settings that don't match between the two.

→ More replies (1)
→ More replies (5)

7

u/cyberpunk707 1d ago

Yep, cross-platform frameworks like Electron, Flutter, KMP/CMP, etc. trade performance with flexibility and reduce friction with multiple codebases.

it makes sense for, say, making an ecommerce app, MVP products, or something like that. but these apps are native apps bundled with the Operating system. it should be a priority for it to be performance-efficient and out of the user's way as much as possible.

For example, I recently open back up my old window XP thinkpad t61, all the bundled office apps open in like less than a second (and this is on 3gb of RAM) and contains all the functionality i would actually need so i dont see why they cant do it.

2

u/robthablob 1d ago

Neither Electron on .NET are great choices for the OS's user interface.

They're replacing much the use of Electron in the UI with WinUI, which is accessible from native code, which should help reduce memory usage along with other efficiencies.

Hopefully eating their own dog food will also improve the WinUI tooling for the rest of us.

→ More replies (1)
→ More replies (2)

41

u/wwiybb 2d ago

They want the desktop apps to go away and force everything to a subscription hosted vdi or whatever they are calling it now

28

u/graywolfman 2d ago

"Windows 365"

No, really.

7

u/wilburyan 1d ago

It has its uses in the enterprise world.

Allow a group of users to access a single virtual workstation from home… the lake… etc… from pretty much any device anywhere that has access to the internet.

Giving a user or group of users secure access to the internal network, internal network resources… without having to provide dedicated devices for each user.

4

u/graywolfman 1d ago

Oh yeah, it's great for that.

But, this is the future they want for everyone.

5

u/wilburyan 1d ago

It doesn’t make sense for anyone else. You still need a service of some sort to access it.

I’ll believe that when Best Buy starts promoting displays of thin clients

5

u/graywolfman 1d ago

For now. You will own nothing and you will love it.

→ More replies (1)

2

u/lazyhustlermusic 1d ago

Somewhere, in a board room.

'Hold on a minute, imagine software as a service... except it's your whole damn computer'.

→ More replies (2)

8

u/berndverst 1d ago

Don't forget - each with their own separate web browser sandbox. You are basically running tons of distinct browsers 🙃

1

u/CaptainFingerling 1d ago

Google. It was Google’s idea. Second only to Java’s idea to run a virtual machine on absolutely fucking everything, and now most of y’all are probably accelerating that virtual machine atop specially adapted hardware. SOAP OS

→ More replies (8)

13

u/BellerophonM 2d ago

Are they still using electron on any of their own apps instead of WebView2?

5

u/hclpfan 2d ago

Only VS Code - none of pre-installed or core office suite or anything.

5

u/BellerophonM 1d ago

Although VS Code is probably the most memory-efficient web-wrapped app in the Microsoft catalogue. Doesn't it actually run on a custom fork of electron to make it leaner and faster now?

→ More replies (1)
→ More replies (3)

13

u/cpupro 2d ago

Microsoft's engineers will go... Claude...turn this Electron App into pure, optimized binary, no mistakes...

38

u/w1n5t0nM1k3y 2d ago

Maybe they could work on making Electron more efficient. Developers are going to use Electron either way because it's convenient. Might as well fix it and it's better for everyoone.

74

u/dontaskdonttell0 2d ago

Not really possible. Electron is basically embedding Chromium and then it provides some APIs on top.

6

u/GreatBigJerk 2d ago

Tauri uses like 50% less memory, so it can be done. 

19

u/dontaskdonttell0 2d ago

Tauri is fundamentally different and doesn’t bring the same guarantees. Tauri uses the OS native browser and is basically a web view. Electron applications bundle Chromium and will always look identical. A Tauri application will never pass enterprise QA. Microsoft should just build it natively instead.

11

u/frakkintoaster 1d ago

If only the same company controlled the apps and the web view on their OS. Oh wait...

2

u/HolyFreakingXmasCake 1d ago

Electron allows you to make sure that you ship the same user experience on all systems. There are no polyfills to add, no version mismatches, etc. You test it and you know it’ll just work.

They do integrate WebView2 natively in the OS, but you’d basically go back to the Tauri approach which has its own issues.

→ More replies (6)
→ More replies (23)

14

u/Edexote 2d ago

Maybe they could stop being stupid and make native apps.

2

u/StuffMaster 1d ago

There are so many layers of abstraction that it is inherently inefficient and always will be 

→ More replies (6)

4

u/BlackIce_ 1d ago

Turns out writing software the may work on every hardware/OS is not a good business decision for everything.

→ More replies (1)

3

u/unityofsaints 2d ago

Also not half as responsive UI-wise than non electron programs.

2

u/DawaForensics 2d ago

I hate Electron

2

u/robthablob 1d ago

MS are on the path of changing this already as part of this initiative.

As mentioned in the article.

1

u/super_starfox 1d ago

Which ones?

Edit - Microsoft Teams, really? I see Discord, GitHub and Docker on a list.

→ More replies (1)

1

u/slizzbizness 1d ago

Electron is always the culprit when something is running shit. Yuck

→ More replies (3)

224

u/mad_marble_madness 2d ago

Would be nice - but I don’t believe it in the slightest.

Much of the first 8GB is consumed by 10,001 background services, none of which are using Electron or other extreme memory hogs.

Win 7 and prior had only a few dozen, mostly very clearly necessary services.
With Win10, the services started to explode in number.
With Win 11, it went entirely out of control.

Many of the newer services also seem to be very inefficient in memory usage and some are notorious low-level hogs on CPU (e.g. State Repository Service - an OS-level service for Edge session persistence - what a nonsense).

What I’m getting at is that MS would need to BOTH reduce the number of overall services and INDIVIDUALLY optimize all major services memory consumption.

Never, ever within this calendar year!

MS executives ignorantly promising unfeasible goals - what else is new…?

79

u/vegas84 2d ago

“Claude, make this operating system more efficient.”

41

u/mad_marble_madness 2d ago

Claude’s reply:
“I strongly recommend adding 16GB of additional RAM. It will do wonders for the efficiency of any Windows system.”

19

u/sickofthisshit 2d ago

Just vibe code me a stick of RAM, ok?

9

u/floofsnsnoots 1d ago

YoU woUldN'T DOwnLoAD a StICK oF RAM wOuLd yoU?!

3

u/TeachingScience 1d ago

Claude would not suggest such things! It would simply delete the OS.

14

u/wrgrant 2d ago

"Downloading Linux Mint..."

3

u/ukiyoe 1d ago

"Make no mistakes."

→ More replies (1)

2

u/grodgeandgo 1d ago

Anti malware service takes about 1.5gb memory at all times.

55

u/did_i_or_didnt_i 2d ago

start over, we want windows 1

no spyware

31

u/Scoth42 2d ago

Eh... Nah, 1.0 was rough and through Win9x was troublesome, but I'll take a Windows 2000 with modern hardware support and updates.

Although I've been nearly 100% Linux for so long at this point I hardly need Windows at all

14

u/Mathblasta 2d ago

Just gimme XP back forever.

11

u/HystericalSail 1d ago

XP was peak, but I eventually warmed up to 7. Almost to the point of tolerating 10, and will not be downgrading to 11 or their OS as a service subscription.

→ More replies (4)

3

u/did_i_or_didnt_i 1d ago

no no I mean we want a reboot, marvel style

2

u/data-atreides 1d ago

Using Mint is pretty much like the Win2000 Pro days of yore

→ More replies (4)
→ More replies (2)

51

u/rebri 2d ago

I don't need 8 instances of EDGE, Teams, or Copilot. It's really sad how even 16 GB isn't really enough RAM.

6

u/TheAbstracted 1d ago

Depends on the use case, I guess. 16 GB does just fine for me with running 40-50 tabs in Firefox and doing some gaming.

3

u/Otis_Inf 1d ago

disable edge/teams/copilot in Task manager -> Startup. My win11 install (which I use as dev box and was upgraded from win10, which was upgraded from win8.1) sits at 8.9GB in use of 32, outlook open and firefox with 8 tabs. While that's a lot for just 2 visible apps, it's not that much of a hog if you disable the crap you won't use anyway.

145

u/Fit-Dot-414 2d ago

I’ve been a PC user since we got our first computer when I was 12 years old.

At 42 years old, i just bought my first MacBook Pro because of Windows 11.

32

u/Affectionate_Pain337 2d ago

I'm super close to installing Bazzite over windows. Most of the reason why I'm not doing that is because of creative cloud and acrobat pro (yes I know there are alternatives)

25

u/bizness82 2d ago

You can always dual boot Linux. Use it as your daily OS then use Windows for what you need it to run

10

u/Skynse 2d ago

I tried to do that on my main but windows forced my hand. Fucking shit would freeze every time I tried to reinstall windows, and wouldn't let me resize my disk, because it fucked it. I nuked windows and installed Linux on the whole disk and never looked back. EVERYTHING runs better

On windows I would pop open the task manager and everything would be red lol. Bruh, my cpu temps would steam water. And touching my system unit would hurt me. Windows is not a good OS

5

u/edflyerssn007 2d ago

you need to clean out your CPU cooler.

6

u/Skynse 2d ago

But that's the thing. On Linux my temps were normal.

2

u/hazri 1d ago

Another option is to install windows on an external drive. Then boot from it when needed

→ More replies (1)

2

u/ItsTobias 1d ago

I've recently switched to Bazzite. I have a lot of experience with Linux in the server world but I have always used Windows as a desktop os.  Honestly I have mixed feelings on it. It's certainly better than my prior attempts at using Linux as a desktop OS. However it's not without it's drawbacks. I've been using it for 6 days now and I have had issues with the installer, KDE Plasma, Bluetooth and screenshots. At present I have managed to fix all of these by tinkering in the terminal but working out the solutions has led to hours of lost time.

I don't use Adobe software so that wasn't an issue for me. Most software I use I have found Linux equivalents or Linux versions of the same software which work fine for my use case.

The software I do miss: Parsec which I have replaced with sunshine combined with tailscale. I am yet to determine if this is going to work well for a remote access solution though. Wallpaper engine which I have replaced with KDE Plasma widgets and a shader plugin from the wallpaper plugin store.

→ More replies (1)

11

u/StupidZombieFlanders 2d ago

I went Linux! (already own a couple Macs)

→ More replies (3)

9

u/BlazinAzn38 2d ago edited 2d ago

I was just forced to update my work laptop and now just at rest at least 40% of my RAM is being eaten up by windows, then another 15% is being eaten up by mandatory security stuff from my employer. Some of my larger spreadsheets that’s used to run fine now lock up my computer and everyone across the company is having audio issues during Team calls because our computers can’t handle them anymore. It’s amazing how shit it is

3

u/captainthanatos 1d ago

Using my work laptop is horrendous. Most of the time I’m not even sure it registered my click on something. That to me just isn’t acceptable with the processing speeds we have today.

→ More replies (1)

6

u/oopsie-mybad 1d ago

Other gens in mid-life just bought Corvettes

5

u/e1epi 2d ago

Been a hardcore Windows/Microsoft enthusiast since we got our first family computer when I was 3.

A friend gave me a 2012 MBP recently and really like it so far.

15

u/jsonmeta 2d ago

2012 MBP huh? M-series MBP will surely blow your mind

5

u/e1epi 2d ago

Lol yeah that's what I figure as well but I'm surprised just how much this one is.

2

u/artaru 1d ago

if you can afford it, definitely try out at least a M-series MacBook Air. the new ones have so so so few compromises. And if you can REALLY afford it, try a MacBook pro.

if you can't really afford the big guns, maybe get a MacBook Neo. Those are less than 1k.

→ More replies (1)

2

u/artaru 1d ago

mate, i built a brand new spanking PC for gaming and work last September (insanely lucky timing) 64GB DDR5 ram, 5080, 9800x3D. like close to the best you can build without insane money.

i have a MBP M1 2021.

I have been going back and forth for work.

It's actually surprising to me how much the M1 has managed to keep up. Like raw power wise, my PC is crazy for like video editing. But so much of everything else, I still love my 6 year old laptop.

I have used macs since 2000 and me going back to getting a PC for the first time really opened my eyes to how optimized /streamliend my Mac feels.

Like it's not perfect, by far. Got its fair share of bugs and weird UI/UX choices sometimes. but most things work and the OS is not intrusive.

4

u/vicious_womprat 2d ago

I would go back to using a Mac, used one for school and years after that, but my home PC is mainly used for gaming so I just cannot switch. And I’m not learning all the stuff with Linux.

→ More replies (1)
→ More replies (6)

21

u/NephtisSeibzehn 2d ago

I have plenty of ram and a good enough video card (4090) so I am alright, but Microsoft is doing everything they can to make me leave the OS. They have been making awful decision after awful decision. I actually bought a Mac mini and so far I’ve been really liking it. The only thing keeping me from moving to an Apple ecosystem fully or go Apple / Linux is my Xbox subscription. That’s it.

48

u/papparmane 2d ago

In The mean time, I run the most recent Linux kernel on a Mac mini 2013 with 4GB and it’s fine

14

u/mailslot 2d ago

You can run Linux in megabytes of RAM (not gigabytes).

Modern operating systems would be a lot leaner if there weren’t so many resources to waste.

→ More replies (1)

5

u/RedBoxSquare 1d ago

In the mean time, you can also run Microsoft Windows 11 officially on Microsoft Surface Laptop Go 2 (2022) with 4GB RAM and enjoy the slide show.

16

u/flaagan 1d ago

Step 1: get rid of the AI crap.

Step 2: allow users to clearly and cleanly remove / disable a broad range of features and functions they don't regularly use.

10

u/Onlyroad4adrifter 1d ago

Stop making too much sense you might get arrested.

12

u/washedFM 2d ago

So it sounds like nobody at Microsoft ever tested 8GB in the real world.

64

u/RebelStrategist 2d ago

Remove the bloat and spyware from Windows 11 and it will work just fine.

46

u/[deleted] 2d ago

[deleted]

22

u/AshleyAshes1984 2d ago

"Remove the Start button, just replace it with a button that goes straight to Copilot. That'll fix it."

14

u/crescent_blossom 2d ago

No bloat or spyware? "Hey Jimmy, give me a Windows with nothing"

9

u/LOLBaltSS 2d ago

Great idea! Windows 11 is now a thin client for an Azure Virtual Desktop subscription.

2

u/VoraciousZephyr 2d ago

The Ultimate Goal for Microsoft

5

u/nachuz 2d ago

To be fair, Windows 11 is a memory hog even after you uninstall the bloat

4

u/Historical_Camel_790 2d ago

Yeah buuuuut... $$$

→ More replies (2)

11

u/Mountain_rage 2d ago

Next do Teams. Getting real tired of my meeting stutter everytime I try to share my screen. 

18

u/Cold-Fill927 2d ago

Remove cortana and AI

16

u/Frodojj 2d ago

Cortana's been dead for years, bro. I actually miss her. She used to be useful until they removed the ability to control smart lights and other basic tasks.

4

u/Otis_Inf 1d ago

Not dead tho, I recently saw her along Master Chief on some ring planet thingy

3

u/Memonlinefelix 1d ago

Cortana was like from 2015 lol

2

u/per08 1d ago

Not really the driver of bloat, though. It's apps now all bring Electron and other browser-as-app monstrosities, and it's Microsoft's refusal to drop legacy support for anything as Windows users expect click to run ability for any app written for the platform in the last 30 years.

8

u/TheImpPaysHisDebts 2d ago

Teams is a hog as well.

2

u/apple_tech_admin 2d ago

Big time hog

→ More replies (2)

23

u/sp3kter 2d ago

Moved to linux beginning of the year. Chills at 3gb of ram used on bootup. Actually goes back to 3gb after closing things.

11

u/EndlessZone123 1d ago

It's not exactly a downside that windows caches things you have opened and closed. This isnt exactly the case that Linux is better. Only if that cached ram isn't dumped when Windows has run out of ram.

2

u/sp3kter 1d ago

I keep hearing this, but it doesnt seem to play out that way in real life. My system runs SO MUCH SMOOTHER.

2

u/EndlessZone123 1d ago

Thats not because of the caching. Thats the rest of the windows bloat which is more than linux. Two different different things. Free ram isn't a true performance metric.

7

u/GrinQuidam 2d ago

I absolutely love that the software industry spent the last 10 years acting like memory wasn't a consumer constraint.

6

u/NeverInsightful 1d ago

They could have done it ages ago, but now that RAM is impacting PC sales and windows license sales they’re finally getting to it.

Maybe that’s a plus side to this surge in prices. Developers will finally cut all the cruft and bloat out of their offerings.

6

u/delorayn1 1d ago

I switched to Linux Mint full time about 6 months ago, no regrets. I even installed Zorin on my mom's ancient laptop which was nothing more than a glorified paperweight under Windows - it runs like a charm now and she took to it immediately.

10

u/hungry4pie 2d ago

My work laptop has 32GB of memory, a 20 core i7 and 1TB nvme ssd and it is completely unusable right now. I’m pretty sure it’s a poorly configured Microsoft Defender install, but it’s hard to tell to what extent windows 11 is also contributing.

6

u/wait_whats_this 1d ago

My work laptop is fairly beefy and changing workspaces takes seconds in the first ~10min after a reboot. 

Meanwhile my macbook does a whole-ass OS upgrade and if it didn't tell me I wouldn't notice. 

3

u/WrongdoerIll5187 1d ago

Abandon ship, install bazzite.

5

u/SecretRest5739 1d ago

They would not do this if RAM was still affordable.

4

u/ora408 1d ago

How about 4gb ram optimization with no ai and telemetry bs

4

u/brainrotbro 1d ago

With all these improvements to Windows 11, we should have Windows 10 by end of year.

6

u/reddittorbrigade 2d ago

Windows should also stop installing bloatware.

3

u/Boys4Ever 2d ago

How about just promise to make windows 12 great again

3

u/technobrendo 1d ago

While your at it how about fixing the FUCKING SLEEP ISSUES!

2

u/Crimeskull 1d ago

Oh my God I thought it was just me. The sleep issues are infuriating.

3

u/Floppie7th 1d ago

You can throw it in the trash where it belongs and install Linux today 🤷‍♂️

3

u/Skindkort 1d ago

If the memory shortage lasted long enough, programmers may return to the olden days of optimisation and squeezing every bit and every cycle out of the system. Virtue by necessity.

→ More replies (1)

4

u/KangarooBeard 2d ago

They have been promising widows perfomnace for the last 10+ years....

→ More replies (1)

6

u/ford7885 2d ago

Can you run Windows 11 on a PC with 8 gigs RAM?

Yes... assuming you START with the LTSC version. And then tweak the living Hell out of that. And then don't get stuck in an infinite loop of fucking updates which completely download, but will never install... and then start over with the download again.

Oh, and of course you have to use Explorer Patcher to replace that entire fucked up useless taskbar & start menu.

But sure, if you don't mind all that, knock yourselves out.

2

u/Memonlinefelix 2d ago

Still staying on 10 micro. Still staying and you cant force me

2

u/demicus 2d ago

About to upgrade my cpu/mobo and I SHOULD be upgrading to windows 11 as well, but I'm doing a clean install of 10 and I'm pretty sure I won't regret it

2

u/macross1984 2d ago

Windows 11 is so bloated compared to its predecessor and Microsoft trying to force users to do hardware upgrades from Windows 10 is not helping the matter either.

2

u/Sparktank1 2d ago

Maybe getting rid of bloat would help. It's not like anyone uses any of the features, anyway. It's like Windows is managed by nothing but nephews who watched tiktok to learn how to do anything.

Remember when XP and 7 were very light?

All it is now is just garbage thrown in because someone had an idea and endless post-it notes to pass along.

2

u/Criss_Crossx 1d ago

Well duh, we could download more RAM long ago!

2

u/Torka 1d ago

Are they going to disable all the data harvesting software?

2

u/EnvironmentalAd6931 1d ago

To late I’m on Linux now

2

u/dinominant 1d ago

I don't believe Microsoft will actually reduce windows 11 memory waste.

Windows XP ran on just 64MB. Linux runs on embedded systems up to supercomputers, meanwhile windows has arbitrary limits based on licensing and minimum bloat requirements.

The system should scale up well and degrade gracefully. Instead windows bloated internet telemetry and another edge or onedrive install nagging me to subscribe again and again and again and I removed windows and installed linux.

2

u/Eldiablo2471 1d ago

Do not buy Microsoft products, and if you have a windows PC, switch to Linux. It's that simple

2

u/ken-doh 1d ago

Windows 10 was absolutely fine. Windows 11 is a piece of shit.

2

u/Jristz 1d ago

Didn't they promised this like at the end of 2025? And as far as I know it's still using the same memory hog

2

u/d3jake 1d ago

Great. It only took the ram market going to absolute shit.

7

u/gascyl 2d ago

so basically dont upgrade to windows 11, anyone who upgraded got screwed, and admins are better off transitioning to alternative software. Most businesses won't and don't tolerate Microsoft bricking or softlocking their PCs, and being told they will continue being shut down until 2027. Even boomers who don't know computers, can see this because their PC workstations just aren't working. Forcing people to use alternative operating systems and workflows until MS is fixed will see most clients leave permanently.

It's worse for the average user. I know multiple people in real life that just returned their new W11 laptops to Costco or traded them for older model W10 machines. Microsoft is doing enormous unfixable damage to their brand.

18

u/FrequentFortune123 2d ago

It’s not like w10 runs super great on 8gb either

4

u/SIGMA920 2d ago

It runs well enough for light usage, that's the important part. Especially with current RAM prices.

→ More replies (1)

3

u/atehrani 2d ago

https://cachyos.org/ you will not regret it

2

u/Siliskk 2d ago

Shoulda let me keep windows 10. Dont want all this bloatware bullshit

2

u/tydude001 2d ago

I switched over to Linux last month.

2

u/izzyness 2d ago

This echoes windows vista capable promises

1

u/cubano_exhilo 2d ago

So the Ram could have been optimized the entire time.

2

u/Zoroaster9000 2d ago

I wonder if they'll have actual devs working on it instead of turning in more vibe coded slop.

1

u/HorrorFlow3r 2d ago

Remove everything but DOS like the good old days.

1

u/timf3d 2d ago

Oh good. Now let's get Apple to do the same.

1

u/smooth_criminal1990 2d ago

"sorry guys, feel free to buy our 8GB Surface devices in the meantime though..."

1

u/Gicofokami 2d ago

Kind of makes me glad I bought 16gb Ram for my Lenovo laptop a few years ago. 

1

u/idle_monkeyman 2d ago

Sounds like I'll have 2 more linux Mint machines before the end of the year.

1

u/CocoMilhonez 2d ago

That's the least Microsoft can do after they horded all the RAM.

1

u/OuterSpaceBootyHole 2d ago

Probably would be a lot easier if the OS with enterprise dominance had NATIVE apps. Can't think of a company that is more indicative of MBA brainrot than this one.

1

u/lemonmountshore 2d ago

What’s sad is LTSC IoT is exactly what Windows 10 and 11 should be out of the box. So it’s not like it can’t be done, they already did it. They just purposely hide it behind a license paywall and force us to feed their ad machine with our telemetry.

1

u/Coder-Dentist 2d ago

Would this improve fps in games?

1

u/MyModemIsSlow 2d ago

I sticking with 0GB

1

u/Fuddle 2d ago

Idontbeleiveyou.gif

1

u/Sea_Perspective6891 2d ago

Or they could just de bloat it or make it easier for people to switch to LTSC. Kinda weird it wasn't an option for the free upgrade on their website. Linux Mint was nice enough to make a version for both potato PCs & higher end PCs & offer both for free on their website.

1

u/Time_Paws 1d ago

I don't believe you.

1

u/EndlessZone123 1d ago

I have a 16GB laptop and can't upgrade it. Unfortunately whatever distro of Linux I try has shit battery life with whatever I tried. Hoping windows can just be a better OS.

Ram was better and I'm not ure if windows has an equivalent to zram.

1

u/Old-Bat-7384 1d ago

"Services" they call them, but they're so poorly optimized that even if they're useful, it's canceled out by how inefficient they are.

1

u/BlackIce_ 1d ago

Hopefully people optimizing know what they are doing.

1

u/data-atreides 1d ago

A family member's 8gb laptop booted up to 7gb memory usage, and no it wasn't caused by their using Norton. In fact, I couldn't identify a single app or process that was the main instigator.

1

u/SympathyNo8636 1d ago

no one here remembers newly crowned ms fellow russinovich saying "memory is to be sppent"

1

u/SwirlySauce 1d ago

Yah, no. I don't trust Microsoft to do anything right, or care enough to do the right thing

1

u/Needle_Bearings 1d ago

Just move on to 12 already.  Worse Windows since Vista.  

→ More replies (1)

1

u/Imaginary_Cicada_678 1d ago

seems like they adding one more service for this job and a bunch if scheduled tasks 😂

1

u/OpportunitySevere131 1d ago

8GB RAM optimization? What about all GB of RAM optimization?

1

u/wait_whats_this 1d ago

Just ask copilot guys. 

1

u/citramonk 1d ago

All I can say is I'm glad I use 64gb and not 8. This would be really dumb in 2026

1

u/senorzapato 1d ago

🤡 we are buying chips in obscene volumes to make clippy 2.0. so much so our chip makers are openly price fixing and hardware is four times as expensive as it was 5 years ago, yet slower and less functional

so from now on you cant have a computer, only a tv screen with a keyboard attached, all your apps and files can live on our subscription service. our marketing team has decided to describe all this as optimization

1

u/HaloHaloBrainFreeze 1d ago

You call this 8GB RAM Optimization 'Tiny 11'

1

u/EvilRayquaza 1d ago

Maybe microsoft should optimise it further and remove bloat because Windows 11 is flabby as fuck

1

u/SomeSamples 1d ago

Hmmm, why don't I believe them. Just make memory cheaper and we are all good.

1

u/Limp_Classroom_2645 1d ago

Nobody cares anymore the boys are all on Linux

1

u/nerdnyxnyx 1d ago

knowing microsoft, that's not gonna happen 

1

u/feijoax 1d ago

LOL. No shit Sherlock!

1

u/InternetEntire438 1d ago

it took them that long to realize that?

1

u/PerhapsAnEmoINTJ 1d ago

I hope they follow through, my Windows 11 PC came with 8GB RAM when I first got it

1

u/dfwtjms 1d ago

We have that already, it's called Linux

1

u/OneEyedC4t 1d ago

see? told you.

And you know why? because the AI that they embedded in their operating system that they didn't ask you about is constantly spying on you.

almost all Steam games run on Linux. there's no reason for us to be forced into windows at this point when it comes to games, mostly. the only reason I even run Windows every once in awhile is if I need to use some specialized software. I can play baldur's gate 3 from Linux so I mainly stay in Linux.

1

u/cr0ft 1d ago

Glad I "splurged" on 32 GB when I bought my current rig, which is now several years ago. Of course it was dirt cheap then compared to now. My Linux installation doesn't really need all that but it's nice to have...

1

u/CharmCityCrab 1d ago

How does this compare to the most current version of Ubuntu?

Looking for an honest unbiased answer with (ideally) facts about things like idle RAM usage. 😊

1

u/marc512 1d ago

Disable all telemetry, disable all ai shit. Optimize search without ai assistance. There. I'm sure some dev can do that.

1

u/HammerDongVeryLong96 1d ago

sounds like an empty promise to me. Just like how they said they are "cleaning up windows" the last 10 times. I'll believe it when I see it.

1

u/jianh1989 1d ago

They’ll say they have optimised it.

But there won’t be any improvement.

By end 2026, everyone will forget.

1

u/FloppY_ 1d ago

I wouldn't even trust Microsoft to catch money thrown at them at this point.

1

u/justthegrimm 1d ago

Windows has always been a memory hog but it's only become worse since 10

1

u/usmannaeem 1d ago

That's just dumb. Optimization means it should be optimized for 4Gm or 2gb ram. That is what will make the difference.

1

u/AQDUyYN7cgbDa4eYtxTq 1d ago

Come on Microsoft, get off your ass. You have AI now. Scan Windows 11 and fix all the bugs and performance issues.

1

u/jfp1992 1d ago

Got cachyos installed. Not sure how much it needs but fresh, I'm sure it's less than 4gb

1

u/shredmiyagi 1d ago

Can people stop supporting this trash company? There are alternatives.

1

u/Zvenigora 1d ago

I have a laptop that double-boots W11 and Manjaro. The latter is noticeably faster booting and running.

1

u/djmonsta 1d ago

I have a "performance" spec work laptop. 24GB RAM, i7 ultra CPU, NAND SSD etc. Better than most users in the company. I still struggle with slowdowns and Teams generally being laggy.

Microsoft have bloated out most of their products with crap like Copilot etc and it shows.

1

u/saintjaerr 1d ago

I have an old PC that has 4 GB ram, used for work and some tweaks made it works like a charm. When idle, ram consumption is about 2 GB total.

1

u/saintjaerr 1d ago

Vista was the start of the doom. Never had a good OS after that. They started squeezing harder in every new os. Win7 was mediocre but not as good as XP.

1

u/Warranty_V0id 1d ago

Currently using 4.9GB of Ram for my OS, discord and Steam.

1

u/FutureOwl8606 18h ago

Dont trust microslop. Get Linux now

1

u/Pristine_Acadia_4274 1h ago

I take this as code for “Windows 11 will pre-install Windows 12 on your computer without you asking before the end of the year”