• 0

Deploy .NET w/o the Framework


Question

Just thought I would post this, as the app/methods employed are pretty interesting for .NET devs. The samples on the page are interesting, as well.

Salamander .NET Linker and Mini-Deployment Tool

Salamander .NET Linker and mini-deployment tool allows you to link .NET assemblies together into a single file, and to deploy your application without installation of the whole Microsoft .NET Framework. The linker selectively links MSIL code putting together only the required classes and methods, and it is capable of linking into the Microsoft .NET framework class libraries. The mini-deployment tool then builds a minimum set of the Microsoft .NET runtime to ship with your application. This usually results in installation size of a few mega bytes, rather than tens of mega bytes, and the installation takes much less time without rebooting machines. The mini-deployed application can be launched directly from a CD, absolutely without copying files or adding registry entries.
The mini-deployment tool puts together the minimum set of CLR runtime files and dependent assemblies that can be simply copied to a single folder on a target machine, and your application runs as if the whole framework is installed. Since the installation is isolated into a single folder, there will be no conflicts with future .NET installation. When linking is used for the dependent assemblies, it will further reduce the file size.
Link to comment
https://www.neowin.net/forum/topic/210209-deploy-net-wo-the-framework/
Share on other sites

Recommended Posts

  • 0

I am not endorsing it...I was just pointing out that the idea is interesting (decoupling only the needed portions of the framework). It would be nice to see an open source version of a product such as this.

Actually, it would be neat to see a VS compiler option for this, but I can pretty much bet that will not happen ;).

  • 0

OK, stop for a second and think. What about the people who do have the framework installed already? :huh: For them, your app is extremely large, and with each service pack to the framework, you have to issue a new update, because the service pack they install doesn't affect your program.

There are other reasons not to do this too, but everyone is so hellbent on using C#/VB.NET without the framework (for reasons I cannot fathom) that they don't see them :wacko:

  • 0
but everyone is so hellbent on using C#/VB.NET without the framework (for reasons I cannot fathom) that they don't see them :wacko:

Really. You'd think they'd realize that the .NET framework is just a very nice set of libraries that make the lives of programmers much easier.

  • 0
There are other reasons not to do this too, but everyone is so hellbent on using C#/VB.NET without the framework (for reasons I cannot fathom) that they don't see them :wacko:

A couple of reasons for that (admittedly, I WAS one of those people at one time, but my own experience distributing a .NET application has given me an attitude adjustment). First, they think that it will decrease the amount of downloading that their users will have to do (Untrue. A WinForms app would require about 16MB of the 20MB Framework).

Second, there's a stigma attached to .NET. Amateurs think that if they don't have to say that their app requires .NET, people will be more likely to download it. That's not actually their real problem; it's just their perspective on their problem. The actual problem is that they just haven't written something good enough to warrant a 20MB prerequisite download (if you write something that people want and make it good, they will download whatever requirements are necessary to run it).

  • 0
A couple of reasons for that (admittedly, I WAS one of those people at one time, but my own experience distributing a .NET application has given me an attitude adjustment). First, they think that it will decrease the amount of downloading that their users will have to do (Untrue. A WinForms app would require about 16MB of the 20MB Framework).

Second, there's a stigma attached to .NET. Amateurs think that if they don't have to say that their app requires .NET, people will be more likely to download it. That's not actually their real problem; it's just their perspective on their problem. The actual problem is that they just haven't written something good enough to warrant a 20MB prerequisite download (if you write something that people want and make it good, they will download whatever requirements are necessary to run it).

While I tend to agree with these observations, there are also some valid reasons why this could be good.

As you alluded to:

There are still many low-end machines that are not suitable for .NET framework installation, and some users may not be willing to install the framework at all, this tool helps you to reach more customers as it silently deploys a trimmed down version of the framework without any noticeable effects and conflicts. The framework appears as an integrated part of your own application.
I think there is a lot to be said by that. I think some people hear "Requires the .NET Framework" and immediately get turned off, as ridiculous as it may be (Thinstall claims "~6MB for a typical GUI application"). If you can get past the marketing speak, I think they bring up some valid points here (although a little dramatized in some places, ie "3700% less space" ;)):
1. The .NET Framework adds more that 20MB to your application download. How many users are you losing because of the extra 1-3 hours of modem download time?

Thinstall creates a stand-alone application that runs without the .NET Framework in as small as 2.7MB for a simple Hello World, and ~6MB for a typical GUI application.

2. The installed size of the .NET Framework is more than 100MB. How many users will decide to uninstall your application because it takes up too much space?

Thinstall runs .NET EXEs without decompressing any files to disk, so the download size and install are exactly the same. i.e. 2.7MB versus 100MB, or 3700% less space.

3. Users are afraid of installing the .NET Framework. Users have a short attention span, don't waste time trying to convince them they need to install 2 things to run your application. When you have the user's attention, sell them on your application, not on why they need the .NET Framework.

Thinstall combines your program with the required portions of the .NET Framework to form a single EXE that runs without installation. No files are extracted/installed to the hard drive, the application can be run directly from CDROM or Internet download link.

4. The .NET Framework install requires registry write access and is not possible for Guest accounts on 2k/xp. Guest accounts are very common in large corporate and educational institutions. Guest users cannot evaluate your software for purchase without contacting the IT department, which leads to lost sales.

Thinstall allows .NET applications to run without registry permissions on all windows Accounts.

5. The .NET Framework install fails on more than 1% of computers because the user's computer is "broken" from previous installers or viruses. It's not your job to trouble shoot why the .NET Framework installer isn't working!

With zero installation, Thinstall runs .NET applications on PCs with corrupted registries, missing DLLs, broken MSI, etc.

6. Your application may not be compatible with newer or older versions of .NET Framework. Don't waste your time tracking down bugs that aren't your fault.

Thinstall links a specific version of the .NET Framework with your application, so it runs exactly the same every time.

Are you worried about lost sales from hackers removing licensing code from your .NET application?

1. Even with obfuscators applied, .NET applications can be perfectly disassembled and reassembled.

This makes it very easy for any programmer to find your license code and remove it. Once a "crack" for your application is released on the net you can stop it. Don't wait until it's too late.

Thinstall hides your .NET "byte-code" from all external disassemblers and hacking tools.

  • 0

Oh nice, first of all bump your executable by 5-10megs of size, and then just convince your computer to throw memory out of the window, if you'll be running multiple applications packed that way. Sure.

Either make your users download the framework, or lets just wait for Longhorn instead.

  • 0
Tom Servo,Aug 29 2004, 12:06]Oh nice, first of all bump your executable by 5-10megs of size, and then just convince your computer to throw memory out of the window, if you'll be running multiple applications packed that way. Sure.

Bah, who doesn't like throwing away memory? :p

Either make your users download the framework, or lets just wait for Longhorn instead.

:) Nice Sig, btw

  • 0

Something like that Thinstall tool might be useful in theory. But complex applications (which yours would have to qualify as if you're willing to spend $1500 on a .NET linker/obfuscator for it) are not distributed as single EXEs for perfectly good reasons, which is exactly what the Thinstall tool appears to do.

And as was already said, you can't apply a .NET service pack to an application that's been linked like this. If Microsoft ever has to release a critical patch for the Framework (say, because there's a buffer overflow in System.String), you are S-C-R-E-W-E-D. You'd have to redistribute your entire application to fix that. Which means a new round of testing to find out if the patch broke anything, then convincing all of your users to re-download the entire thing, possibly an at-your-own-cost mailing of new CDs to users if you're distributing that way (which could cost you a bloody fortune), and/or loss of future sales because you're selling something with security holes that can't be easily patched.

These tools just aren't worth the potential hassle. Distributing the Framework is safer, easier, and MUCH less expensive.

  • 0

2. The installed size of the .NET Framework is more than 100MB. How many users will decide to uninstall your application because it takes up too much space?

The .NET Framework is about that size, your app isnt, it doesnt install the .net framework every time you install a app, it only installs once, it doest add the 100 or so MB to the app in the Add/Remove programs list, so that's not a valid statement.

  • 0

The installed size happens only because IL code can be fairly good compressed, plus the framework installer creates NGen'd images of the core libraries, plus add application tracking and what not, that'll use up space slowly.

However can I see the issue here, when someone sees his Framework folder being around 120megs, he can blindly assume that the application needs most of this and would be some memory eating monster. You can witness a similar effect with those task manager eagle eyes, that don't want to understand how the CLR and GC handle system memory allocation.

  • 0
OK, stop for a second and think. What about the people who do have the framework installed already? :huh: For them, your app is extremely large, and with each service pack to the framework, you have to issue a new update, because the service pack they install doesn't affect your program.

There are other reasons not to do this too, but everyone is so hellbent on using C#/VB.NET without the framework (for reasons I cannot fathom) that they don't see them :wacko:

Have you ever programmed in the real world?

If you have to distrubute a 20MB .NET framework with your app, which most users won't have (most users use 98, 2000 or XP without SP atm), over a dialup or ISDN connection, people will just not choose it. You have lost a sale.

Even if you have an internet deployment, most big places don't have the .NET framework installed.

1) Security: it's just introducing more holes into Windows.

2) More problems. .NET framework can horribly mess up a Windows install if you have problems with it - I've seen it plenty of times.

3) The fact you will have to keep upgrading it. They should of made a .NET framework 1.0, and kept with it. Sorted every bug and put any additional functionality they need in the app, instead of the framework. I know that many programmers just won't bother with .NET now, becuase if you want to take advantage of new VS stuff then you have to keep everyone uptodate on the huge .NET install.

4) Time. .NET framework can take ages on an old machine, and that means getting it booked into the workshop, transporting it around, having a tech watch over it... not only that, you have just took a working machine out of someone's office which means they may not be able to do a days work. If you have 1,000 machines all like that (running Win2000 for example), and you need to check each of them work fine after the install, you are looking at a couple of million dollars lost in work time.

Now do you guys get why no-one is taking up .NET and just using webapps? Whereas we used to 'recommend' custom wrote VB apps for businesses, we now give them a server, with Linux, Apache, mySQL and PHP installed - along with our custom web app we wrote for them, with a tape driver for automatic backups of the database, and usually roll out Firefox (we certainly will be pushing for this far more when it hits 1.0 or soon after) for security reasons. If it breaks, we SSH into the box, reboot if needed (or database restore - but we haven't needed to do this yet), and it's back up running within 5 minutes. Before, we'd have to goto the site, find where the files were stored, try and see what went wrong and it was a pain in the ass.

Upgrades are really easy too, we just overwrite the files at midnight and the new version is rolled out to all clients on the network. The next stage of course is to go to Linux desktops everywhere, which could be done due to the fact you only need a webbrowser, office suite and an exchange compatiable mail client (like Evolution).

I do like a lot of the features in VS.NET though - they could save us a little time. But sadly, for nearly all of what we do, 'rich client apps' are so passe. They have too many issues.

  • 0
Have you ever programmed in the real world?

If you have to distrubute a 20MB .NET framework with your app, which most users won't have (most users use 98, 2000 or XP without SP atm), over a dialup or ISDN connection, people will just not choose it. You have lost a sale.

Even if you have an internet deployment, most big places don't have the .NET framework installed.

1) Security: it's just introducing more holes into Windows.

2) More problems. .NET framework can horribly mess up a Windows install if you have problems with it - I've seen it plenty of times.

3) The fact you will have to keep upgrading it. They should of made a .NET framework 1.0, and kept with it. Sorted every bug and put any additional functionality they need in the app, instead of the framework. I know that many programmers just won't bother with .NET now, becuase if you want to take advantage of new VS stuff then you have to keep everyone uptodate on the huge .NET install.

4) Time. .NET framework can take ages on an old machine, and that means getting it booked into the workshop, transporting it around, having a tech watch over it... not only that, you have just took a working machine out of someone's office which means they may not be able to do a days work. If you have 1,000 machines all like that (running Win2000 for example), and you need to check each of them work fine after the install, you are looking at a couple of million dollars lost in work time.

Now do you guys get why no-one is taking up .NET and just using webapps? Whereas we used to 'recommend' custom wrote VB apps for businesses, we now give them a server, with Linux, Apache, mySQL and PHP installed - along with our custom web app we wrote for them, with a tape driver for automatic backups of the database, and usually roll out Firefox (we certainly will be pushing for this far more when it hits 1.0 or soon after) for security reasons. If it breaks, we SSH into the box, reboot if needed (or database restore - but we haven't needed to do this yet), and it's back up running within 5 minutes. Before, we'd have to goto the site, find where the files were stored, try and see what went wrong and it was a pain in the ass.

Upgrades are really easy too, we just overwrite the files at midnight and the new version is rolled out to all clients on the network. The next stage of course is to go to Linux desktops everywhere, which could be done due to the fact you only need a webbrowser, office suite and an exchange compatiable mail client (like Evolution).

I do like a lot of the features in VS.NET though - they could save us a little time. But sadly, for nearly all of what we do, 'rich client apps' are so passe. They have too many issues.

Heh, something tells me you don't care much for Java either. ;)

  • 0
1) Security: it's just introducing more holes into Windows.

Care to back THAT claim up?

2) More problems. .NET framework can horribly mess up a Windows install if you have problems with it - I've seen it plenty of times.

The .NET installer doesn't touch anything of the existing Windows installation, only a few registry keys. The rest is selfcontained in the %SystemRoot%\Microsoft.NET folder.

  • 0

Hi Guys,

Just found this interesting discussion and wanted to add a few comments.

>>1) Security: it's just introducing more holes into Windows.

>Care to back THAT claim up

When .NET is installed it allows .NET code to be run on from Internet Explorer with restricted security settings (just like Java applets). Right now there are no know security holes in this senerio, but it's very easy to imagine hackers will find several over the lifetime of .NET. So by installing the real .NET Framework you are potentially opening yourself up to risk that you wouldn't have if it weren't installed. This is one reason many enterprise customers refuse to install .NET on their PCs.

> The .NET installer doesn't touch anything of the existing Windows installation, only a few registry keys. The rest is selfcontained in the %SystemRoot%\Microsoft.NET folder

The .NET Installer writes thousands of registry keys and places many files in c:\windows, c:\windows\system32, as will as %system%\microsoft.net\framework. It also creates a new Global Assembly cache (c:\windows\assembly). It upgrades DLLs and for Windows 98/ME it installs device drivers. I know a developer who sells a retail application written in .NET with more than 100,000 copies sold already. Originally he installed the .NET Framework seperately and said that the .NET Framework fails to install on 1% of PCs (1000 machines is a lot of tech support calls). He switched to using Thinstall and doesn't have that issue any more.

  • 0

The amount of files in system32 is negligible, just the few DLLs required to fire up the CLR. The registry keys are CLSIDs pointing to the class libraries. Registry keys don't do any harm at all.

And regards the security implications, managed code running in the IE security zone has almost no rights. It can't do jack. And for that matter, have you ever tried to run .NET bits as applets in a webpage? I tried, and it's a pain in the ass and almost not doable. Running WinForms applications from IE? Tight ass permission set applies. No issue here.

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

    • No registered users viewing this page.
  • Posts

    • Thanks
    • 7 Days: Killing uBlock Origin bypasses, Euro Office faces fire, and will AI replace you? 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 include WWDC 2026 announcements, updates on child safety, and Meta's use of data from outside businesses to optimize your feed. Let's get started. You can check out the recent issues of the 7 Days weekly roundup. Killing uBlock Origin bypasses The hottest news of the week was about Google Chrome effectively ending most uBlock Origin workarounds (a free, open-source ad blocker extension) by permanently dropping MV2 extensions and their bypasses. Chrome is transitioning towards newer MV3 extensions. A recent discussion thread highlighted how the latest and upcoming versions of the most popular browser are expected to be its final releases with support for MV2 extensions. Genuinely European? Euro-Office faces fire The recently launched cloud-based office suite, Euro-Office, is facing criticism at home. The LibreOffice developer wrote an open letter criticizing Euro-Office for its marketing claim that it's the "first open-source office suite developed in Europe," since the honor has belonged to OpenOffice since 2001. The Document Foundation has called out Euro-Office, arguing that it can't consider "itself genuinely European" as long as it keeps pushing Microsoft defaults on users, adding that "it has to speak ODF as its mother tongue." Will AI replace you? Image: Tara Winstead via Pexels Microsoft's AI boss, Mustafa Suleyman, said in an interview earlier this year that AI would replace office workers within 12 to 18 months. Joining the ranks of top executives who have softened their stance on AI replacing humans, Suleyman recently walked back his earlier remarks and now says that AI will automate tasks, not replace entire white-collar jobs. He defended his earlier comments by arguing that they referred only to individual actions people perform at their desks. Louis Rossmann wants to sue Samsung Image: Louis Rossmann Tech repair entrepreneur and right-to-repair activist Louis Rossmann contacted Samsung support over a failed 4TB Samsung 990 Pro NVMe SSD. After back-and-forth communication, Samsung offered a $330 refund instead of a replacement, but Rossmann found that the SSD was readily available for new buyers at a higher price. He has issued a formal 60-day notice and intends to file a suit in Texas small claims court, as Samsung's actions reflect a failure to honor its warranty obligations. Samsung reached out to Neowin to clarify its updated stance that customers in such situations will receive a refund equal to the product's current market price. Child safety or mass surveillance? Image: Jonathan Borba via Pexels Signal accused the UK government of using child safety and device-level explicit content ban as a cover for mass surveillance. Calling the plan "dystopian," Signal warned that it violates everyone's fundamental right to privacy. The messaging platform believes that the government should keep children "safe" and "protected," but it should do so through social services and education. Fears of social media regulation Image via DepositPhotos.com More governments across the globe are tightening their grip on social media and bringing stricter regulations in the name of child safety. Bluesky COO, Rose Wang, warned that social media regulations could destroy competition from small startups and that heavy regulatory compliance costs favor deep-pocketed tech giants while locking out new entrants. Our Features Image: Pexels Our coffee-powered team publishes a platter of editorials, opinion posts, and guides. Here's what they got for the week: UK **** blockers are a looming privacy disaster, we must be able to see the source code This week in software news Image: Proton Catch up on some of the latest software news updates that arrived throughout the week: Dark clouds over PC makers: Building on our report from last month, Dell officially acknowledged that its own remediation software was causing BSOD issues and unexpected system restarts. HP is also facing equally frustrating issues involving recent Windows Secure Boot updates on Windows 11. Controversial icon: Spotify finally removed the disco ball icon from its app and replaced it with the familiar flat green logo after weeks of mixed reactions online. While some people don't like the new design, the retro, three-dimensional look has generated a following of its own. Even other brands are coming up with their versions of the disco logo. NVIDIA fixes stuff: A new hotfix driver 610.52 fixes various issues related to monitors and displays, noting that G-SYNC-related frame pacing troubles should now be resolved on Ada Lovelace GPUs. The feedback thread also points out that the hotfix patches a BSOD issue. FIFA World Cup tracker: Opera is redesigning its Android browser with a built-in football tracker for the upcoming World Cup in the US. The new homepage is now "more immersive" with easier access to common browser features. Command line for Proton: The Swiss technology company has launched a command line version of the Proton Drive, which you can use to manage your encrypted files directly from a terminal across all major platforms, including Windows, macOS, and Linux. This week in hardware news Image: Thermaltake Catch up on some of the latest software news updates that arrived throughout the week: Intel and AMD PCs in one case: Thermaltake's CAPO X dual-system chassis brings you the best of both worlds by supporting two microATX (mATX) motherboards and up to two 360 mm AIO liquid coolers. If you want ideas, maybe you can use one as your main PC and another as an AI agent. Google Tensor production: While TSMC will remain the lead producer, the search giant is reportedly in talks with Samsung to hand over part of the production of its next-generation Tensor AI chips. The upcoming TPUs are reportedly codenamed “Icefish” and will be produced using Samsung's 2-nanometer process technology. Lethal fake phone chargers: UK-based consumer rights organization Which? has warned that "potentially lethal knock-off chargers" are still being sold on online marketplaces, including Amazon and eBay, despite the dangers of such chargers having been exposed. This week in Google News Image: Google Catch up on some of the latest Google news updates that arrived throughout the week: Sliding into DMs: You might remember that YouTube had a direct messaging feature back in the day. It's now rolling out a revamped direct messaging inbox that lets you share Shorts, videos, and live streams and have conversations about them. New in NotebookLM: The AI-powered note-taking app got some new agentic capabilities and more advanced reasoning, thanks to support for Gemini 3.5 and Antigravity. NotebookLM can now generate outputs in more formats, making it easier to start new projects with less information. This week in Apple News Image: Apple Catch up on some of the latest Apple news updates that arrived throughout the week: WWDC 2026: This week was all about Apple's annual developer conference, where the iPhone-maker finally unveiled an upgraded Siri AI and a platter of new Apple Intelligence features. Siri AI now has a cross-platform app, which is supported on select models of iPhone, iPad, Mac, Apple Watch, and Vision Pro. What's different about WWDC: I wrote a detailed feature this week discussing how Apple changed the WWDC keynote this year, blurring the lines between its operating systems. Apple didn't have dedicated segments for its operating systems this year and didn't even publish the official press releases. Liquid Glass slider (finally): It's that time of the year when Apple previews fresh updates for iPhone, iPad, Mac, Apple Watch, AirPods, and other platforms. A new transparency slider for Liquid Glass is coming to iOS 27, iPadOS 27, and macOS 27 Golden Gate. Is your device supported?: If you're wondering whether your Apple device supports the new developer beta builds, you can check the respective compatibility lists for iOS 27, iPadOS 27, macOS 27, and watchOS 27. Siri AI not coming to Europe: Yes, that's true due to complications related to the Digital Markets Act (DMA). While Apple penned a blog post to tell its side of the story, a European Commission spokesperson told Neowin that the DMA does not prohibit Apple from launching its services in the EU; the company is simply required to comply with the law. New child safety features: Apple announced a trove of new safety features for kids, including a simpler setup experience for parents, Ask to Browse, Time Allowances, and a redesigned Screen Time UI. Parents can now visit a new website to find answers to common questions around child safety features. More cloud power: Apple's Private Cloud Compute cloud infrastructure will now run beyond its own data centers for the first time. It's working with Google and NVIDIA to run new Apple Intelligence workloads on Google Cloud systems powered by NVIDIA GPUs. This week in Meta news Catch up on the latest Meta news updates that arrived throughout the week: Data from outside: Meta is rolling out a new update globally to personalize your AI responses and primary feeds using data from outside businesses. It already targets ads based on shopping activity, but the latest development enables it to personalize other "parts of your experience." There is a toggle in the Settings to disable activity from other businesses; however, it won't prevent companies from sending your data to Meta. Level playing field: The European Commission has ordered the social media giant to restore access to WhatsApp for third-party AI chatbots, including ChatGPT and Copilot. Meta previously blocked rival AI chatbots from operating on WhatsApp, prompting the Commission to launch an antitrust investigation. Spying on users: On the flip side, WhatsApp accused the Israeli cyber-intelligence firm, NSO Group, of deploying a fresh wave of targeted "spear phishing" attacks against its users, which were thwarted by WhatsApp's security teams. Reorder profile grid: Adding some customization for the profile grid feature, Instagram now lets you rearrange posts in your profile without deleting and reuploading content. Go to your profile and long-press any thumbnail to find the "Reorder grid" option. This week in AI news Catch up on the latest artificial intelligence news updates that arrived throughout the week: Claude RAM hogger: Windows users are getting infuriated by Claude Desktop's hidden 1.8GB Hyper-V VM bug, which spins up if you use Claude Cowork or agent mode even once. It shows a Vmmem process in Task Manager, indicating 0% CPU usage but 1.8GB of RAM usage. Claude Fable 5: The new state-of-the-art AI model from Anthropic beats OpenAI's ChatGPT-5.5 in multiple AI benchmarks. Claude Fable 5 sits above the Opus models and outperforms most other generally available models across knowledge work, vision, scientific research, and more. However, the model was abruptly suspended after receiving an export control directive from the US government. Stack Overflow for AI agents: The popular Q&A platform has launched Stack Overflow for Agents in beta, which AI agents can use to share, find, and reuse coding knowledge. It explained that AI agents operate in isolation, creating an Ephemeral Intelligence Gap, and valuable tokens are wasted on something another agent has already solved. Upgrading Codex: OpenAI is buying a company called Ona, which makes secure cloud execution and orchestration technology for developers. The ChatGPT-maker aims to make Codex agents run for days without being tied to a local machine or an active session. It also announced a new developer mode in Chrome. This week in open-source news Catch up on some of the latest open-source and Linux updates that arrived throughout the week: Linux 7.1 rc7: Linux Torvalds dropped an optimized rc7 with crucial fixes for AMD and laptop hardware. He said that a stable version of Linux 7.1 could arrive next week, adding that the latest RC is not small, but smaller than recent releases. Alpine Linux 3.24: The latest Alpine Linux release added support for COSMIC Desktop, Linux 6.18, IPv6 installer support, automatic serial console configuration for headless setups, and major package updates and removals. This week in Microsoft News Microsoft had to shut down more than 70 GitHub repos after they were compromised by malware, Teams is getting a controversial tracking feature that users may hate, and the company explained why the new update makes PowerToys faster. You can check out Taras's freshly baked Microsoft Weekly roundup to catch up on all the interesting stories this week. This week in gaming The latest issue of Pulasthi's Weekend PC Game Deals curates several exciting games on sale this week. On the Epic Games Store, the new titles on display for grabs include Warhammer 40K Speed Freeks and The Ouroboros King. NVIDIA GeForce NOW's summer sale lowered the prices of both the Performance and Ultimate membership options for a limited time period. Meanwhile, the Xbox Free Play Days brought Undead Labs' post-apocalyptic title State of Decay 2, as well as two Team17-published titles. That said, here are some more stories from the gaming world: Dragon's Dogma 2: Dark Arisen expansion to bring snowy region, new updates also coming Playground drops 30 minutes of Fable gameplay, shows off life sim and morality system Playground Games confirms Forza Horizon 6 save wipe bug Doom: The Dark Ages Revelations expansion gives the Slayer a brutal Chain Spear State of Decay 3 is out in 2027, reveals Plague Nests with new co-op gameplay trailer From the review corner This week, Taras got his hands on the DuRoBo Krono portable e-ink reader, which comes with a $279 price tag. It's a smartphone-sized device with a rotating dial, sitting somewhere between premium and cheap in terms of build quality. Speaking of the pros, the physical controls are cool, the smart dial is useful, the battery life is good, and Android 15 has no-nonsense software. On the flip side, the device lacks software customization, the built-in AI needs improvement, the smart dial is a bit wobbly, and there is no ambient light sensor. EA Sports UFC 6 EA Sports UFC 6 does a better job at onboarding new players than most fighting games, according to Pulasthi's detailed review. The game comes with rewarding combat systems, top-notch animation, impressive impact physics, and visible damage on fighters. However, the menus lag a lot, grappling isn't very fun, and the flow state feels a little misplaced. 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: GIGABYTE Radeon RX 9070 XT Gaming OC ICE 16G - $649.99 (13% off) 1TB Samsung T7 Portable SSD - $189.98 (31% off) AirPods Pro 3 - $179 ($50 off) Edifier R1280Ts Powered Bookshelf Speakers - $129.99 (24% 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!
    • Well I've done a grand total of nothing, and it now clocks between 2010mhz and 1995mhz (stock is 1710mhz) and hovers around 80c, warmer than it used to, but tolerable clocks seem to have returned. Thanks for all the advice on this thread. Will review the evidence and make a choice.
    • Audacious 4.6.1 by Razvan Serea Audacious is a lightweight, open-source audio player that emphasizes simplicity, performance, and sound quality. Designed for Linux, Windows, and macOS, it supports a wide range of audio formats, internet radio streaming, and playlist management. Users can customize the interface with Winamp-style skins or modern themes, making it flexible for different preferences. Audacious also includes an equalizer, advanced audio effects, and a plugin system for extending functionality. Its low resource usage makes it especially suitable for older computers or users who value efficiency without sacrificing playback quality. Audacious key features: High audio quality – delivers clean, gapless playback with minimal distortion. Wide format support – plays MP3, FLAC, Ogg Vorbis, AAC, WAV, WMA, and more. Internet radio streaming – supports Shoutcast, Icecast, and other online streams. Winamp skin support – classic, nostalgic look for users who prefer the old-school style. Modern GTK-based interface – clean, simple UI with a more modern feel. Customizable themes – change appearance through skins and themes. Advanced playlist management – organize, save, and edit playlists with ease. Equalizer – fine-tune audio output with a built-in graphical equalizer. Audio effects – built-in DSP options like crossfade, replay gain, and more. Plugin system – extend functionality with additional components. File metadata support – displays and organizes music based on tags. Drag-and-drop support – quickly add songs or playlists. Global hotkey support – control playback without switching windows. Bit-perfect output modes – bypass system mixers for pure audio output. ReplayGain support – normalizes track loudness automatically. Cue sheet support – play entire albums from a single audio file with .cue. MPRIS2 integration – integrates with Linux desktop environments for media controls. Advanced resampling options – adjust playback quality with different resampler settings. Gapless playback – seamless transition between tracks encoded properly. Crossfade plugin – blend one song into the next smoothly. Last.fm scrobbling plugin – track listening history online. Remote control support – control Audacious via command-line or scripts. Lyrics plugin – display song lyrics if available. Alarm / timer plugin – start or stop playback at set times. SOX resampler plugin – high-quality resampling for audiophiles. Spectrum analyzer / visualization plugins – visual feedback while playing music. Headphone crossfeed effect – simulates speaker listening for headphones. Customizable buffer size – tweak latency and playback smoothness. Audacious 4.6.1 changelog: Use XDG cache dir to store temporary files (#1817) Accept embedded lyrics in more cases (#1818) Bump .so and plugin ABI versions retrospectively (#1819) Include Georgian translation (#1820) Fix build on systems using musl instead of glibc (#1823) Download: Audacious 4.6.1 | 48.2 MB (Open Source) Download: Portable Audacious 4.6.1 | 69.8 MB View: Audacious Website | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • Week One Done
      rolfus earned a badge
      Week One Done
    • One Month Later
      Leroy Jethro Gibbs earned a badge
      One Month Later
    • Conversation Starter
      flexorcist earned a badge
      Conversation Starter
    • One Month Later
      AndreaB earned a badge
      One Month Later
    • One Month Later
      agatameier earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      505
    2. 2
      +Edouard
      197
    3. 3
      PsYcHoKiLLa
      142
    4. 4
      ATLien_0
      89
    5. 5
      Steven P.
      80
  • Tell a friend

    Love Neowin? Tell a friend!