As former Windows person who still uses fair amount of Powershell on Linux, I was interested. However, reading the summary left me confused like you don't understand what's happening at Microsoft. > Hopefully Microsoft will spend more time in the future on their server product strategy and less on Copilot ;-) The future product strategy is clear, it's Linux for servers. .Net runs on Linux, generally with much better…
Azure services run on [customized] Hyper-V, thus Windows Server. Azure networking is Linux. EDIT: Marvel at the NT4 style Task Manager [0]. [0] https://techcommunity.microsoft.com/blog/windowsosplatform/a...
Windows Server 2025 Runs Better on ARM
101–110 of 156 posts
Re: Windows Server 2025 Runs Better on ARM
#102Cant believe somebody is still using windows server? What’s the use case?
At least in my experience I’m based in Korea and have worked on code that goes into enterprise systems — most MES and related systems are still built around MS SQL. SQL Server is very much alive in that space. It may feel outdated from a modern app development perspective, but the reality is that it’s deeply embedded through vendor lock-in.
What’s often called “legacy” is also, in another sense, a massive accumulation of layers built on top of it. That history has weight.
In most environments I’ve seen, the architecture ends up being hybrid: Windows on one side (for equipment control, MES, vendor tools), and Linux on the other (for backend services, data processing, etc.).
From the perspective of the companies I’ve worked with, there’s also a different way of looking at Linux. I often hear that “there’s no clear owner” — meaning no single vendor they can hold accountable. With Windows-based stacks, they feel like there’s at least a defined support boundary.
In the end, I think it comes down to perspective.
Re: Windows Server 2025 Runs Better on ARM
#103Earlier quoted context omitted.
> You can turn it on globally for all processes by creating a DWORD value named "Enabled" under HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Segment Heap, and giving it a value of 3 I had previously seen this described as 0 vs non-zero. Since you have some inside experience :), anything special about 3 instead? What about 2? How would I find these value meanings out on my own (if that's even possible)? Thank…
It's a combinination of bit flags. The lowest bit controls whether segment heap is on or off. The 2nd lowest bit bit controls some additional optimizations that go along with it, something about multithreading. A value of 3 (both flags set) gives you identical behavior to what specifying SegmentHeap in your application manifest does. Using the application manifest approach is the right way to ship software that opts…
Re: Windows Server 2025 Runs Better on ARM
#104Earlier quoted context omitted.
Im not really in the space but all the CAD things I see lately are browser based "cloud offerings" Im not sure is CAD stuff is just served by a basic graphics card at this point or if there is some server side work going on. OS doesnt mean that much when every industry decided that Chrome was going to be their VM
No one is using that cloud crap professionally. The bread and butter of the CAD world is Windows PCs with tons of RAM and certified GPUs.
I would bet there are at least some people using Onshape at their job. https://www.onshape.com/en/resource-center/case-studies/
Re: Windows Server 2025 Runs Better on ARM
#105Cant believe somebody is still using windows server? What’s the use case?
I wish we could separate the paid/oss aspects from the technical ones because Microsoft absolutely runs circles around every other stack when it comes to serious business software solutions, especially in resource constrained teams. I agree that oss and free software is conceptually ideal, but I also see why you might want to try different models.
Much of the Microsoft hate seems to come back to this notion that paid, COTS software is inherently evil or bad. Also, windows 11 is genuinely bad, but at least it boots up without weird issues that take an entire afternoon to resolve. I've never had a Linux experience that didn't kick me in the balls in some way. Not even the Steam Deck was smooth.
I happily throw my wallet at Microsoft if they solve my problem. Adobe, IBM, Oracle, The Empire, etc. Doesn't matter anymore. If it provides value to me and my clients, I'm going to use it or advocate for it. Spending money on good tools is not a bad thing. This world is about to get way more competitive than many of us would like for it to be. This level of petty tooling tribalism is going to become absolutely lethal.
Re: Windows Server 2025 Runs Better on ARM
#106This could be tested even on the existing desktop hardware, by disabling "Turbo" in the BIOS settings, so that the Intel CPU would run at the base clock frequency, providing a lower, but stable and predictable performance.
Re: Windows Server 2025 Runs Better on ARM
#107Earlier quoted context omitted.
in no way that I can see is MSSQL or Server "legacy".
The only people using MSSQL Server are people deep, deep in the Microsoft ecosystem. Think government work, and those unlucky enough to work at a pure Microsoft shop where every problem looks like a Microsoft or Azure solution. It's not a dominant database anywhere on the outside.
Very seldom I use something like Postegres, last time was in 2018.
Re: Windows Server 2025 Runs Better on ARM
#108Earlier quoted context omitted.
It's "legacy" because it's essentially tied to Windows. Yes, technically it works on Linux, and no doubt that was an amazing feat, but no serious company is running MSSQL on Linux when all the documentation, all the best practices are all based on running that on Windows.
Why did they port it to Linux? Knowing nothing about this, I wonder if they're getting ready to retire Windows Server, and wanted to get their server products off it? Edit: How they did it is also quite fascinating: https://www.microsoft.com/en-us/sql-server/blog/2016/12/16/s... https://www.microsoft.com/en-us/research/project/drawbridge/ >a key contribution of Drawbridge is a version of Windows that has been enlight…
Windows Server is doing alright.
Re: Windows Server 2025 Runs Better on ARM
#109Earlier quoted context omitted.
Azure services run on [customized] Hyper-V, thus Windows Server. Azure networking is Linux. EDIT: Marvel at the NT4 style Task Manager [0]. [0] https://techcommunity.microsoft.com/blog/windowsosplatform/a...
Microsoft just upstreamed support for running Linux as the Hyper-V equivalent of Dom0, so no Windows required. https://www.phoronix.com/news/Linux-6.19-Improves-Hyper-V
Re: Windows Server 2025 Runs Better on ARM
#110Reading the article, it seems to boil down to the following two observations: 1. ARM64 is actually less "smart" than x64. While Intel's Core i9 tries to be clever by aggressive boosting and throttling, Snapdragon just delivers steady and consistent performance. This lack of variability makes it easier for the OS to schedule tasks. 2. It is possible that the ARM build is more efficient than the x64 build, because Wind…
The x86 server CPUs, like AMD Epyc or Intel Xeon, have a lower range within which the clock frequency may vary and their policies for changing the clock frequency are less aggressive than for desktop CPUs, so they provide a more constant and predictable performance, which favors multi-threaded workloads, unlike in desktop CPUs, where the clock frequency control algorithms are tuned for obtaining the best single-thread performance, even if that hurts multi-threaded performance.