我如何从powershell完全关闭windows defender

前端之家收集整理的这篇文章主要介绍了我如何从powershell完全关闭windows defender前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Set-MpPreference -DisableRealtimeMonitoring禁用第一个,哪些特定开关禁用打开UI时看到的其他开关?我没有在文档中找到一个明确的例子,我不想运行每个禁用开关,因为MS文档很糟糕.

经过几个小时的文档: https://docs.microsoft.com/en-us/powershell/module/defender/index?view=win10-ps

刚决定卸载它.这适用于带有PS 5.1的WS 2016.

Remove-WindowsFeature Windows-Defender,Windows-Defender-GUI

以下内容对我不起作用(来自2011-2012的博客),但在卸载之前先试一试:

Get-Service WinDefend | Stop-Service -PassThru | Set-Service -StartupType Disabled
原文链接:https://www.f2er.com/windows/366749.html

猜你在找的Windows相关文章