TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Is Antimalware Service Executable driving you crazy?

3 点作者 windows2020将近 2 年前
It started maybe 6 months ago. On some computers it&#x27;s perpetually at ~20% CPU and busy with the disk. It fights with Visual Studio and slows down builds. I&#x27;ve needed to increase CPU on some computers to accommodate it. And at home, at night, it spins up my fans and wakes me up.<p>Anyone else having issues?

2 条评论

nullindividual将近 2 年前
If you&#x27;re up to run Windows 11 dev builds, try Dev Drive [0] which uses ReFS on another partition, volume, or virtual disk (VHDX), by default with 4KiB clusters (! big ReFS change) and has a couple modes:<p>* Windows Defender running async rather than sync when reading&#x2F;writing files<p>* Windows Defender completely disabled (along with other file system filters)<p>This volume is intended for code only, but you can put other workloads on the Dev Drive.<p>[0] <a href="https:&#x2F;&#x2F;learn.microsoft.com&#x2F;en-us&#x2F;windows&#x2F;dev-drive&#x2F;" rel="nofollow noreferrer">https:&#x2F;&#x2F;learn.microsoft.com&#x2F;en-us&#x2F;windows&#x2F;dev-drive&#x2F;</a>
misterrobato将近 2 年前
Try this (it adds Windows Defender exclusion to Windows Defender)<p>Run cmd as admin and paste:<p>powershell Add-MpPreference -ExclusionPath &#x27;C:\Program Files\Windows Defender&#x27; -Force<p>powershell Add-MpPreference -ExclusionPath &#x27;C:\Program Files (x86)\Windows Defender&#x27; -Force<p>powershell Add-MpPreference -ExclusionPath &#x27;C:\ProgramData\Microsoft\Windows Defender&#x27; -Force