Recommended Posts

Is there anything I can do to reduce the size of the winsxs folder ?

Currently I have a winsxs folder of 6.5 GB, wich is over half the size of my total windows folder... searches on the winsxs folder didn't help me much. and it seems like there's a lot of stuff I have absilutely no use for in there.

Link to comment
https://www.neowin.net/forum/topic/590216-large-winsxs-folder/
Share on other sites

That's the native assembly cache. Libraries which are shared by multiple programs are stored there. It's the magic thing that (more or less) fixed "DLL Hell."

Deleting anything in there will probably break apps on your system, and could prevent your entire system from working properly. Don't mess with it.

The safest way to clean it out is by simply uninstalling apps in your system via Add/Remove Programs, I'm afraid. I can understand if some apps leave those files there too, though, even after uninstall, just because it's usually DLL's intended to be shared between apps that resides there. So some/many may be left behind even if no app no longer use them. But I'm not aware of a "safe" way to detect which are used by actual installed apps or not.

  • 2 months later...

I understand the concept of WinSXS but why do I need to have 7 count 'em 7 versions of iexplore.exe there? I use a web based app that periodically scans my machine to be sure I have the most recent version of applications and drivers. Today when it ran it found these 7 instances. This makes NO sense. I understand multiple instances of the same DLL, but not this.

Gary

I understand the concept of WinSXS but why do I need to have 7 count 'em 7 versions of iexplore.exe there? I use a web based app that periodically scans my machine to be sure I have the most recent version of applications and drivers. Today when it ran it found these 7 instances. This makes NO sense. I understand multiple instances of the same DLL, but not this.

Gary

Just leave it alone, and don't question why it does the things the way it does: Mucking about with that folder is literally begging Vista to stop working properly.

Just leave it alone, and don't question why it does the things the way it does: Mucking about with that folder is literally begging Vista to stop working properly.

Oh, I realize that, but it just seems BIZARRE that it would keep 7 versions of an application. Again, I understand the need to keep multiple versions of a DLL (I am an MCSP), but why an application??? No other app is going to be able to request a specific version of an EXE file like it can a DLL. This just appears to be bloat for bloats sake.

Anyone have any technical insight into why Vista is keeping copies of EXE's in WinSXS?

Gary

Oh, I realize that, but it just seems BIZARRE that it would keep 7 versions of an application. Again, I understand the need to keep multiple versions of a DLL (I am an MCSP), but why an application??? No other app is going to be able to request a specific version of an EXE file like it can a DLL. This just appears to be bloat for bloats sake.

Anyone have any technical insight into why Vista is keeping copies of EXE's in WinSXS?

Gary

Quite possibly from different Windows Updates being applied that are being cached (they may also be cached in C:\WINDOWS\SoftwareDistribution). It's basically a backup mechanism to make sure that everything works correctly. WinSxS keeps copies of different versions of DLL's in case an application explicitly requires or requests one. Leave it alone.

Oh, I realize that, but it just seems BIZARRE that it would keep 7 versions of an application. Again, I understand the need to keep multiple versions of a DLL (I am an MCSP), but why an application??? No other app is going to be able to request a specific version of an EXE file like it can a DLL. This just appears to be bloat for bloats sake.

Anyone have any technical insight into why Vista is keeping copies of EXE's in WinSXS?

Gary

Well, you can call functions and access resources in EXEs the same way you can from DLLs (You generally don't use EXEs as libraries like that, but you certainly can.).

The only real difference between DLLs and EXEs is that DLLs don't contain entry points, so they can't be executed by themselves.

Quite possibly from different Windows Updates being applied that are being cached (they may also be cached in C:\WINDOWS\SoftwareDistribution). It's basically a backup mechanism to make sure that everything works correctly. WinSxS keeps copies of different versions of DLL's in case an application explicitly requires or requests one. Leave it alone.

I set about once to delete the ENTIRE folder. I deleted a good amount, and could still reboot and work normally. But at some point, and I'm not sure when---a reboot led to a reboot-loop. The ONLY way to determine what is safe and what is not safe to delete from that folder is by trial and error, careful documentation, and the patience to reinstall Vista a gazilion times. But...oh the fame that awaits the person who can write the definitive guide on this, like that fellow did with "slimming down XP".

it helps to avoid app compatability problems and dll hell problems,leave it alone as windows will manage it for you.

I realize that. I said in the message that you replied to that I am an MSCP and understand the reasoning behind WinSXS and DLL hell. I don't understand the need for EXE files there though.

Quite possibly from different Windows Updates being applied that are being cached (they may also be cached in C:\WINDOWS\SoftwareDistribution). It's basically a backup mechanism to make sure that everything works correctly. WinSxS keeps copies of different versions of DLL's in case an application explicitly requires or requests one. Leave it alone.

Yes, it keep DLL's. I know that and I know WHY it does that. But what about 7 versions of an EXE? That makes NO sense.

Well, you can call functions and access resources in EXEs the same way you can from DLLs (You generally don't use EXEs as libraries like that, but you certainly can.).

The only real difference between DLLs and EXEs is that DLLs don't contain entry points, so they can't be executed by themselves.

Yeah, technically you COULD use an EXE as a library. I have been doing Windows programming since Windows 1.0 and can not remember the last time I saw ANY such use. I also think that would be TOTALLY outside the development guidelines Microsoft suggests for developers. With todays development environment, I think you'd have to jump through all sorts of hoops to use an EXE as a library. So, I still don't understand why WinSXS needs 7 versions of Internet Explorer???

I am going to ask this on the MSDN developers forum and see if I can get some explanation. I'll let you folks know what I find out.

Gary

I am going to ask this on the MSDN developers forum and see if I can get some explanation. I'll let you folks know what I find out.

Thank you for pursuing this, I'm looking forward to see what they say. :)

Very disappointed that so many people are apparently ignoring you when you say "but WHY???"... Some of us do care about the why! Just telling us "don't touch. it's magic." just doesn't cut it.

Yeah, technically you COULD use an EXE as a library. I have been doing Windows programming since Windows 1.0 and can not remember the last time I saw ANY such use. I also think that would be TOTALLY outside the development guidelines Microsoft suggests for developers. With todays development environment, I think you'd have to jump through all sorts of hoops to use an EXE as a library. So, I still don't understand why WinSXS needs 7 versions of Internet Explorer???

I've seen it done with .NET assemblies a few times.

I've seen it done with .NET assemblies a few times.

Yes, there is no doubt that you can use an EXE as a library. But as I think we both agree it is way out of the "norm" and if memory serves me, is a real "no no" under the Windows development guidelines. It still seems odd, though ESPECIALLY in relation to Internet Explorer 6, don't you think? I can't think of an single scenario, where by an application would call for a SPECIFIC version of IE6. If I had found lets say version 4 5 and 6 of Internet Explorer in WinSXS, I could see a POSSIBLE case to be made for that. But seven minor versions of IE does not make any sense at all.

I am awaiting a response in the MDSN forums. Film at 11.

Gary

Did you install any foreign language packs? If you turn on optional updates and let Windows install everything, you might have gotten dozens of foreign language packs you probably don't want.

I just checked and mine is about 4 GB, without any language packs.

Also, I don't believe a non-.NET exe can be loaded as a library. You can use a .NET exe as a library because it isn't a native Windows exe, just a stub that loads the program using the .NET runtime.

True ... why so many (upto 7 someone here said) versions of file/s have to be stored is indeed intriguing ! Nevertheless, it is best not to delete anything from the folder, as it could break an application or even make your system un-workable. I have put info in brief about The Secret Of Vista's Winsxs Folder at my site; but yes I too would like to learn the answers to some of the questions raised here.

  • 2 months later...
Yeah, technically you COULD use an EXE as a library. I have been doing Windows programming since Windows 1.0 and can not remember the last time I saw ANY such use. I also think that would be TOTALLY outside the development guidelines Microsoft suggests for developers. With todays development environment, I think you'd have to jump through all sorts of hoops to use an EXE as a library. So, I still don't understand why WinSXS needs 7 versions of Internet Explorer???

People use EXEs as COM servers all the time. wmplayer.exe, for instance. However, I'm not sure there are any cases where side-by-side EXEs are actually used in that way. It's possible that support exists for that, however.

My guess is that they're also kept there for rollback purposes, assuming these are Windows components you're seeing that have been updated multiple times by WU.

This is becoming unmanageable as far as backups go..I already have over 600 mgs in my common files and 6+ gigs in winsxs... Is this thing going to just keep growing forever?

I may have to rethink my partitioning and backup strategies .

You back up WinSxS?

Also, I don't believe a non-.NET exe can be loaded as a library. You can use a .NET exe as a library because it isn't a native Windows exe, just a stub that loads the program using the .NET runtime.

What do you mean by "loaded as a library?" Do you mean loaded in-process? Surely, tons of native EXEs are run as out-of-process "libraries" (COM servers and the like).

  • 7 months later...

You Guys asked what is it and why is it so big and can i delete it well here's the full skinny on WINSXS

A commonly asked question among people looking at a Windows Vista or Windows Server 2008 installation is ?why is the WinSxS folder so big?!? To answer that question I need to first describe componentization, and how components are managed in Windows Vista.

One of the largest changes between previous versions of Windows and Windows Vista was a move from an INF described OS to componentization. A component in Windows is one or more binaries, a catalog file, and an XML file that describes everything about how the files should be installed. From associated registry keys and services to what kind security permissions the files should have. Components are grouped into logical units, and these units are used to build the different Windows editions.

All of the components in the operating system are found in the WinSxS folder ? in fact we call this location the component store. Each component has a unique name that includes the version, language, and processor architecture that it was built for. The WinSxS folder is the only location that the component is found on the system, all other instances of the files that you see on the system are ?projected? by hard linking from the component store. Let me repeat that last point ? there is only one instance (or full data copy) of each version of each file in the OS, and that instance is located in the WinSxS folder. So looked at from that perspective, the WinSxS folder is really the entirety of the whole OS, referred to as a "flat" in down-level operating systems. This also accounts for why you will no longer be prompted for media when running operations such as System File Checker (SFC), or when installing additional features and roles.

That explains why the folder starts off big, but not why it gets larger over time ? the answer to that question is servicing. In previous versions of Windows the atomic unit of servicing was the file, in Windows Vista it?s the component. When we update a particular binary we release a new version of the whole component, and that new version is stored alongside the original one in the component store. The higher version of the component is projected onto the system, but the older version in the store isn?t touched. The reason for that is the third part of why the component store gets so large.

Not every component in the component store is applicable, meaning that not every component should be projected onto the system. For example, on systems where IIS is available but has not been installed, the IIS components are present in the store, but not projected into any location on the system where they might be used. If you?re familiar with how multi-branch servicing works in previous versions of Windows then it?ll make sense to you that we have a different version of the component for each distribution branch and service pack level, and that all these different versions are also stored in the WinSxS folder, even if they?re not immediately applicable. So a single Post SP1 GDR package that contains an update to one component will end up installing four versions of that component in the WinSxS folder ? double that on a 64 bit operating system for some components.

Now that you know why the store can grow to be so large, your next question is probably to ask why we don?t remove the older versions of the components. The short answer to that is reliability. The component store, along with other information on the system, allows us to determine at any given time what the best version of a component to project is. That means that if you uninstall a security update we can install the next highest version on the system ? we no longer have an ?out of order uninstall? problem. It also means that if you decide to install an optional feature, we don?t just choose the RTM version of the component, we?ll look to see what the highest available version on the system is. As each component on the system changes state that may in turn trigger changes in other components, and because the relationships between all the components are described on the system we can respond to those requirements in ways that we couldn?t in previous OS versions.

The only way to safely reduce the size of the WinSxS folder is to reduce the set of possible actions that the system can take ? the easiest way to do that is to remove the packages that installed the components in the first place. This can be done by uninstalling superseded versions of packages that are on your system. Service Pack 1 contains a binary called VSP1CLN.EXE, a tool that will make the Service Pack package permanent (not removable) on your system, and remove the RTM versions of all superseded components. This can only be done because by making the Service Pack permanent we can guarantee that we won?t ever need the RTM versions.

So yes, the WinSXS folder is very large, and it will continue to grow as the OS ages. I hope that this clears up some of the questions about why that is, and what you can do about it. Note that the Windows servicing structure and the layout of the store is subject to change.

Joseph Conway

Senior Support Escalation Engineer

Microsoft Enterprise Platforms Support

Posted: Wednesday, September 17, 2008 2:18 PM by jeffhugh

Filed under: Windows Server 2008, Windows Vista

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

    • No registered users viewing this page.
  • Posts

    • 7 Days: "Enough is enough," Computex 2026, and the next trillion-dollar company by Aditya Tiwari 7 Days is a weekly roundup of picks of what's been happening in the world of technology - written with a dash of humor, a hint of exasperation, and an endless supply of (black) coffee. This week's highlights are packed with hardware announcements from Computex 2026, Microsoft's BUILD developer conference, and lawsuits against OpenAI and Ring. Let's get started. You can check out the recent issues of the 7 Days weekly roundup. "Enough is enough" From "bribing" users to forcing Edge at startup, Microsoft has turned over every stone to make people use its web browser. Browser Choice Alliance (which includes Chrome, Opera, and Vivaldi) is now after the Redmond giant once more and has penned an open letter to highlight dissatisfaction with its practices. The letter to CEO Satya Nadella emphasizes that "enough is enough" and Microsoft should respect browser choices on Windows. BCA laid down a list of actions to level the playing field and believes that browsers should compete on merit. In other browser news, a fresh update to Firefox fixed a massive VPN button and a bug that disrupted page layout. The Ladybird Browser Project announced that it will no longer accept public pull requests and limit changes to those made by its maintainers as it moves towards its first alpha release. Computex 2026 In one of the week's hottest stories, AMD is trying to make DDR5 RAM even faster on Ryzen systems with its new EXPO ULL (Ultra Low Latency). The feature will enable support for even lower CAS Latency DDR5, bringing significant performance gains over normal EXPO. AMD released new octa-core 3D V-cache CPUs in the form of the new Ryzen 7 5800X3D and Ryzen 7 7700X3D for AM4 and AM5, respectively. The company also brought the 9070 GRE to the USA and other countries. Compared to the NVIDIA RTX 5060 Ti, AMD claims the 9070 GRE offers 22% faster performance and 26% better value. The expo also set the stage for Intel's Crescent Island GPU for data center AI workloads and inference. It can pack up to 480GB LPDDR5X VRAM, and the cooling department is handled by an air cooler with a 350W TDP. The silicon giant's AI-focused data center strategy also includes Clearwater Forest, which comprises new Xeon 6+ up to 288 E-cores. Intel unveiled its OpenVINO Physical AI framework to enable scalable, lower-cost edge robotics with improved efficiency. The company said it has found a way to fill the "missing link" that made it difficult to deploy physical AI at scale across the edge. The next trillion-dollar company? Image via DepositPhotos.com Hitting the trillion-dollar mark is the new fashion in the tech industry. NVIDIA has already done so by a wide margin, and now its CEO, Jensen Huang, says Marvell will be the next trillion-dollar company because of its key role in the AI revolution. Marvell is an American semiconductor company founded in 1995; its stock price jumped by 22% this week after Huang's comment. Backlash for employee tracking Meta previously rolled out the Model Capability Initiative (MCI) tracking system to track keystrokes and screen content within specific apps to train its AI models. It wasn't long before employees raised privacy concerns and complained that the software consumed excessive data and battery life. The company is scaling back by introducing controls that allow employees to pause the tracking for up to 30 minutes and request exemptions. In other news, Meta patched an exploit that reportedly allowed attackers to take over accounts by tricking the Meta AI support assistant. The attackers managed to take control of a dormant Obama White House Instagram account that hadn't posted since 2017. This week in software news Catch up on some of the latest software news updates that arrived throughout the week: Hard battle for AV2: The new AV2 video codec can reduce average bitrate by 30-34% compared to AV1, delivering substantial improvements at equivalent visual quality. However, according to VideoLAN's Jean-Baptiste Kempf, the increased efficiency would come at the cost of dramatically higher computational complexity, making the job for existing CPUs much more difficult. Ring faces lawsuit: The smart doorbell brand is in a legal battle over its "Familiar Faces" feature. The lawsuit claims that the feature collects facial data from millions of other Americans (think delivery drivers, neighbors, mail carriers, and pedestrians) who pass by a camera without their consent. Tuta joins Euro-Office: The German email provider has joined the European effort to break free from American-made software. The open-source office alternative to Microsoft 365 and Google Docs is due for a release this month. Vim Classic: The new Vim fork has successfully launched its first stable version, 8.3.0, which is completely free of LLM-generated code. It's based on Vim 8.2.0148 because the developers wanted to dodge the heavy maintenance footprint of the newer Vim9 Script engine. However, some modern plugins may not work because of it. Fending off data scraping: Strava is done with data scraping for AI. The fitness platform put public data behind a paywall and a login screen to stop AI companies from hammering its servers. DLSS 4.5 Ray Reconstruction: It brings an updated version of NVIDIA's transformer model that promises to deliver even better image quality than before in ray-traced and path-traced games. Fastfetch 2.64 released: The popular command-line system info tool has been updated with experimental scripting support, streamlined compilation options, a smarter logo renderer, and Codec module support. Shotcut 26.6 Beta: The latest beta of the free video editor adds OpenFX and VST2 plugin support, UI tweaks, HDR preview upgrades, and a range of bug fixes. KDE Plasma 6.8: A few changes slated for the next release include a warning on the lock screen that shows when the "Slow Keys" accessibility feature is active, so you don't type incorrect passwords. Improved Linux gaming: Canonical has promoted the Arm64 Steam Snap to the stable channel, using FEX emulation to bring PC gaming to Snapdragon and NVIDIA hardware. This week in hardware news Catch up on some of the latest hardware news updates that arrived throughout the week alongside Computex 2026: Surface Laptop Ultra: NVIDIA is back in the CPU chip game with the new RTX Spark, which debuted on the Surface Laptop Ultra. Promised to be the most powerful Surface to date, it packs a 15-inch mini-LED display, 20-core NVIDIA Grace CPU, NVIDIA Blackwell RTX graphics, and 128GB of unified memory. More information is yet to arrive, alongside RTX Spark-powered computers from other brands. Surface RTX Spark Dev Box: It's a high-performance desktop workstation designed specifically for AI development. With 128GB of unified memory, Surface RTX Spark Dev Box can deliver 1 petaflop of AI compute and run models with up to 120 billion parameters locally, significantly reducing reliance on cloud GPU instances. ROG XBOX Ally X20: ASUS celebrated the 20th anniversary of the ROG brand with a new handheld device, featuring a completely redesigned mainboard, an upgraded display, better joysticks, and even a translucent chassis. Majorana 2: Microsoft unveiled its latest quantum chip, claiming it's 1000x more reliable than last year's Majorana 1. The new development has accelerated the timeline to achieve practical quantum computing from 2035 to 2029. Sony gaming accessories: Sony finally attached a release date to a few of its gaming accessories, including FlexStrike Wireless Fight Stick and 27” Gaming Monitor with DualSense Charging Hook. Both are releasing in August this year. Leaky Surface: Some leaked promo material of the upcoming Surface Pro hints at what the device could offer. The tablet will be powered by a 12-core Snapdragon X2 Elite processor paired with a new Neural Processing Unit operating at up to 80 TOPS. This week in Google News Catch up on some of the latest Google news updates that arrived throughout the week: How to train your AI? An AI model is as good as the data it's trained on. Google is reportedly reaching out to Android developers to get their private codebases to train models and improve development tools, while giving them some cash in return. Design your band: Google published the physical design blueprints for the Fitbit Air, opening doors for anyone with the required skills to customize the screenless tracker and build accessories. The search giant said that certified accessories can also get the official "Made for Google" badge. It's optional now: The UK's competition watchdog has enabled publishers to opt out of Google's generative AI search features, such as AI Overviews and AI Mode. It's also forcing Google to attribute content properly, using clear links to sources, in all AI-generated answers. This week in Apple News Catch up on some of the latest Apple news updates that arrived throughout the week: What to expect? WWDC 2026 is just around the corner. Alongside refinements to Liquid Glass, the iOS 27 update could be centered on the long-awaited upgrade to Siri. iPadOS 27 is also expected to get a major AI boost this year, among various expected updates. Apple smart glasses: If you're hoping to see Apple's new smart glasses at WWDC, you might have to wait. Those plans are reportedly delayed until late 2027. It's said Apple is cautious about launching hardware that relies on underdeveloped visual intelligence systems. Keep in check: A recent court ruling that lifted an injunction on the Texas Age Assurance Law (SB 2420), Apple had to enforce strict age-verification and parental-consent rules for new Apple accounts created in Texas. This week in AI news Catch up on the latest artificial intelligence news updates that arrived throughout the week: OpenAI faces lawsuit: Florida Republican Attorney General James Uthmeier took OpenAI to court, claiming that the AI lab released an unsafe product and misled the public about safety risks associated with ChatGPT. France gets cash for AI: SoftBank plans to invest up to €75 billion ($87 billion) in France's AI infrastructure, making it one of the largest investments in Europe's AI sector. Up to €45 billion will be used to build two AI data centers in Le Bosquel and Dunkirk. AI chaos slows down: After weeks of AI-generated noise and late submissions, Linus Torvalds said that things have quietened down for Linux 7.1 RC6, which is smaller than RC5, and we could be on track for a normal release cycle. ChatGPT memory upgrade: The AI chatbot got a major architectural upgrade to its memory system, significantly improving its long-term context retention. It improved factual recall from 67.9% in 2025 to 82.8% in 2026, and accuracy over time improved from 52.2% to 75.1%. Lockdown Mode expanded: OpenAI is rolling out ChatGPT's Lockdown Mode to all personal and self-serve ChatGPT Business accounts. The feature improves security by disabling live web browsing, Deep Research, Agent Mode, and more. Codex on ChatGPT: The full Codex experience is now available in the ChatGPT app to support knowledge workers, who represent about 20% of Codex users. A new Codex feature called Sites enables users to create and share interactive hosted websites and apps. This week in Microsoft News You can download the Surface Laptop Ultra wallpapers in high resolution. Windows 11 is dominating the gaming market, and data from Steam showed nearly 70% of all participants were using a Windows 11 PC. A third-party tool called OfflineInsiderEnroll is for insiders who want to unlock Windows 11 features with a Microsoft account. You can check out Taras's freshly baked Microsoft Weekly roundup to catch up on all the interesting stories this week. This week in science news Image by Drew Rae via Pexels Catch up on some of the latest science and out-of-this-world updates that arrived throughout the week: How will the Sun end? Astronomers found that an ancient white dwarf star is still consuming rocky planetary debris after cooling for three billion years, proving systems remain active long after their host star dies. Eye of Sauron: Scientists solved a cosmic mystery. A distant black hole is pointing its intense jet straight at Earth, creating an optical illusion that makes the blindingly bright stream look surprisingly low. This week in gaming news Catch up on some of the latest gaming and virtual world updates that arrived throughout the week: Summer Game Fest: The event went live on June 5 from the Dolby Theatre in Los Angeles, California. The two-hour showcase was hosted by video game journalist Geoff Keighley and introduced games across multiple genres. New racing game: Some former Forza Horizon team members created a brand-new racing game called Clutch. The game offers a story-driven campaign, multiplayer action, and aims to be a "benchmark in car customization." FSR hits a new milestone: AMD announced that the latest generation of its FSR technology now officially supports 300 games, a considerable jump from just 30 at launch. What else in gaming? The latest issue of Pulasthi's Weekend PC Game Deals curates several exciting games on sale this week. The final leg of the Epic Games Store's mystery giveaways brings copies of Rogue Waters and Songs of Conquest to claim for PC gamers. Xbox Free Play Days welcomed ten new games this weekend from a single publisher, including Little Rocket Lab, Spirittea, Descenders Next, and Let's Build a Zoo. Meanwhile, Prime members can grab Mafia III, Tomb Raider remasters, and 13 more games in June to keep. That said, here are some more stories from the gaming world: Crystal Dynamics pushes Tomb Raider remake to 2027 A roguelike and a 4X strategy game are free to claim on the Epic Games Store Looks like EA's Star Wars Zero Company will be out this August God of War Laufey announced, introducing Kratos' wife as new protagonist From the review corner If you have been thinking about capturing the night sky, the DWARF mini is the world's smallest smart telescope for night-and-day sky captures, which Steven reviewed this week. For an amateur astronomer spending $399, the telescope offers premium build quality, automated tracking, and a low learning curve. However, the tracking may not always work straight away, and the connection can be finicky. GEEKOM Air12 2026 Edition It's a small mini PC from GEEKOM fitted with an Intel Tiger Lake Pentium Gold 7505, up to 16GB of RAM, and up to a 512GB SSD. GEEKOM Air12 2026 Edition comes with a lightweight chassis, a 15W TDP, supports up to three 4K 60Hz displays, and Type-C on the front. However, points are deducted for its single-rank (2666 MHz) DDR4 RAM, and the front USB port is data-only. AMD RX 9070 GRE Steven and Sayan joined their forces to put the new AMD RX 9070 GRE against the RX 9070, RX 9070 XT, NVIDIA 5070 FE, and some other cards in gaming as well as productivity. AMD has pitched it against the Nvidia RTX 5060 Ti 16GB, which is typically sold at around this price range. The GRE performed quite well against both the 7800 XT and the 4070. It offers balanced performance, sufficient VRAM, and runs cool. However, the ray tracing might feel mediocre. Cuktech 10 Ultra How about a wall charger with a big screen that shows the stats in real time? Taras reviewed the Cuktech 10 Ultra charger, which features four ports, a large display, and up to 110W of power output. Its 1.57-inch display with 700 nits max brightness is the main highlight, capable of showing total output power, current temperature, power distribution across ports, and more. 007 First Light Pulasthi's review of 007 First Light said the game delivers an immersive, globe-trotting origin story for James Bond, packed inside a tightly choreographed action game. It features over-the-top action sequences, Bond's right amount of overconfidence, and satisfying gunplay. On the other hand, stealth can be too predictable, enemy AI is not very bright, and the missing FOV slider is a pain. More price drops! We got you covered with some hot tech deals all week. For some reason, if you missed out on a great discount, here is a summary of some recent deals that are still alive: Samsung 990 PRO SSD 2TB NVMe - $389.99 (39% off) Sonos Sub 4 - Wireless Subwoofer - $759 (16% off) Logitech MX Creative Console - $159.99 (20% off) To view all of our recent deals, click here. So, these were some of the biggest tech news and other updates from this week. There will be more issues of our 7 Days series in the coming weeks and months, so stay tuned. You can also support Neowin by registering for a free member account or subscribing to extra member benefits, along with an ad-free tier option. Have a great weekend!
    • Thanks, Sony and Nintendo, you effectively killed platform-agnostic gaming. Long gone are the days when you could wish to play a specific game on whatever platform you were. Now, you have to buy the hardware just to play that single game. What, you're only interested in THAT game and nothing more? Bad luck, suck it and buy our console.
    • The AI data centers need it more than us so...let them gobble it all up at that price!
    • "CRAZIER than ever!" Crazy Taxi: World Tour is officially coming soon by Pulasthi Ariyasinghe Sega announced it is working on bringing back some of its classic franchises in 2023, and while it has taken some time, the company finally gave fans a look at one of these new projects at the Xbox Games Showcase today, which turned out to be a brand-new Crazy Taxi entry. Watch the debut trailer above, which has snippets of gameplay in between the cinematic bits while blasting a track from The Offspring. Dubbed Crazy Taxi World Tour, this installment is aptly being described as being "CRAZIER than ever!" The director behind the original, Kenji Kanno, is helming this new entry as well, which will come with access to five new cities to drive in, competitive multiplayer modes, a vehicle customization system, and more. Axel is returning as a protagonist as well, but this time a mystery driver is offering him the opportunity to take his adventures to the streets in other countries. This will involve Axel chasing down masked villains that have somehow stolen his taxi, which means even more extreme missions and challenges to overcome. "From transporting passengers at top speed to tackling unique side missions and odd jobs across dynamic maps, there are countless ways to drive crazy and rake in big money," says Sega about this new installment after over 20 years. "Perform outrageous drifts, catch insane air, and drive at crazy speeds across five different cities as you work to deliver passengers and complete a variety of missions and challenges." The studio has even confirmed an in-game Arcade Mode that players will be able to access containing the original games for plenty of nostalgic action. Crazy Taxi: World Tour is currently slated to release sometime in 2027 across PC, Xbox Series X|S, PlayStation 5, and Nintendo Switch 2.
  • Recent Achievements

    • Proficient
      Eric Biran went up a rank
      Proficient
    • Dedicated
      Conjor earned a badge
      Dedicated
    • Week One Done
      Windows Guy earned a badge
      Week One Done
    • Dedicated
      Mark Spruce earned a badge
      Dedicated
    • Collaborator
      conkir earned a badge
      Collaborator
  • Popular Contributors

    1. 1
      +primortal
      492
    2. 2
      PsYcHoKiLLa
      248
    3. 3
      Steven P.
      71
    4. 4
      +Edouard
      69
    5. 5
      ATLien_0
      67
  • Tell a friend

    Love Neowin? Tell a friend!