如何在 Windows 11 中启用或禁用服务
许多应用程序和功能通过在后台运行而不需要任何用户输入来支持每个操作系统的平稳运行。(operating system)服务也是如此,它们是Windows 操作系统(Windows OS)背后的主要齿轮。这些组件可确保文件资源管理器(File Explorer)、Windows 更新(Windows Update)和系统范围搜索等基本(System-wide search)Windows功能正常工作。它使它们随时准备好使用,没有任何问题。今天,我们将了解如何在Windows 11中启用或禁用某个/任何服务。
如何在 Windows 11 中启用或禁用服务
(How to Enable or Disable A Service in Windows 11
)
并非所有服务都一直在后台运行。这些服务被编程为根据六种不同的启动(Startup)类型启动。这些区分服务是在您启动计算机时启动还是在用户操作触发时启动。这有助于轻松节省内存资源(memory resource conservation),同时不会降低用户体验(user experience)。在介绍在Windows 11(Windows 11)上启用或禁用服务的方法之前,让我们看看 Windows 11 中不同类型(Windows 11)的启动(Startup) 服务(Services)。
(Types of )Windows 11启动服务(Startup Services
)的类型
如前所述,Windows需要服务才能正常工作。但是,在某些情况下,您可能需要手动启用或禁用服务。以下是在Windows 操作系统(Windows OS)中启动服务的各种方法:
- 自动(Automatic):此启动类型(startup type)使服务能够在系统启动时启动(at the time of system boot)。使用这种启动类型的服务通常对于Windows 操作系统(Windows operating)的顺利运行至关重要。
- 自动(延迟启动)(Automatic (Delayed Start)):此启动类型(startup type)允许服务在成功启动后启动,(after successful boot up)但有一点延迟。
- 自动(延迟启动,触发启动)(Automatic (Delayed Start, Trigger Start)):这种启动类型允许服务在启动时启动,但它需要触发操作(service start at boot but it needs a trigger action),通常由另一个应用程序或其他服务提供。
- 手动(触发器启动)(Manual (Trigger Start)):此启动类型(startup type)在注意到可能来自应用程序或其他服务的触发器操作时启动服务。(a trigger action)
- 手动(Manual):此启动类型(startup type)适用于需要用户输入(require user input)才能启动的服务。
- Disabled:此选项阻止服务启动,即使它是必需的,因此,所述服务不运行(service doesn’t run)。
除上述内容外,请在此处阅读有关 Windows 服务及其功能的 Microsoft 指南(Microsoft guide on Windows services & their functions here)。
注意(Note):您需要使用具有管理员权限(administrator rights)的帐户登录才能启用或禁用服务。
如何通过服务窗口在 Windows 11 中启用服务
(How to Enable A Service in Windows 11 Via Services Window
)
按照下面提到的步骤启用Windows 11中的任何服务。
1. 单击搜索图标(Search icon )并输入服务(Services)。点击打开(Open),如图。
2.向下滚动(Scroll)右窗格中的列表并双击(pane and double-click)您要启用的服务。(service)例如,Windows 更新(Windows Update)服务。
3. 在属性(Properties)窗口中,从下拉列表中将启动类型(Startup type)更改为自动(Automatic)或自动(延迟启动) 。(Automatic (Delayed Start))
4. 单击Apply > OK以保存更改。该服务将在您下次启动 Windows PC 时启动。
注意:(Note:)如果您想立即启动 服务,也可以单击服务状态(Service status)下的启动。(Start)
另请阅读:(Also Read:)如何在Windows 11中查看正在运行的进程(Windows 11)
如何(How to Disable A Service in Windows 11 )通过服务窗口禁用 Windows 11 中的服务(Via Services Window)
以下是在Windows 11上禁用任何服务的步骤:
1.如前所述,从Windows 搜索栏(Windows search bar)启动服务(Services)窗口。
2.通过双击打开您要禁用的任何服务(例如Windows 更新)。(Windows Update)
3.从给定的下拉列表中将启动类型(Startup type)更改为禁用(Disabled)或手动。(Manual)
4. 单击Apply > OK以保存这些更改。此后Windows(Windows)更新服务将不会在启动时启动。
注意:(Note:)或者,如果您想立即停止服务,请单击服务状态(Service status)下的停止。(Stop)
另请阅读:(Also Read:)如何在Windows 11中从“开始”菜单禁用(Start Menu)在线搜索(Online Search)
替代方法:通过命令提示符启用或禁用服务(Alternative Method: Enable or Disable A Service Through Command Prompt)
1. 单击开始(Start)并键入命令提示符(Command Prompt)。单击以管理员身份运行(Run as administrator),如图所示。
2.在用户帐户控制(User Account Control)确认提示中单击是。(Yes)
注意:(Note: )将<ServiceName>替换为您要在下面给出的命令中启用或禁用的服务的名称。
3A。键入下面给出的命令并按Enter 键以(Enter key)自动(automatically)启动服务:
sc config "<ServiceName>" start=auto
3B。键入以下命令并按(command and press)Enter 键( Enter key)以延迟自动(automatically with a delay)启动服务:
sc config "<ServiceName>" start=delayed-auto
3C。如果要手动(manually)启动服务,请执行以下命令:
sc config "<ServiceName>" start=demand && sc start "<ServiceName>"
4. 现在,要禁用(disable )任何服务,请在Windows 11中执行给定的命令:
sc stop "<ServiceName>" && sc config "<ServiceName>" start=disabled
推荐的:(Recommended:)
- 如何从Windows 11降级到Windows 10
- 如何在Windows 11中以管理员身份运行(Administrator)文件资源管理器(File Explorer)
- 如何在PowerShell中(PowerShell)删除文件夹和子文件夹(Delete Folders and Subfolders)
- 修复(Fix Error Code 0x8007007f)Windows 11 中的错误代码 0x8007007f
我们希望这篇关于如何(how to enable or) 在 Windows 11 中启用或禁用服务的(disable a service in Windows 11)文章有所帮助。请在评论部分(comment section)与我们联系,提出您对本文的建议和问题。
Related posts
Fix此PC无法运行Windows 11错误
如何在 Windows 11 上更改壁纸
如何在旧版 BIOS 上安装 Windows 11
如何在 Windows 11 中安装图形工具
如何在 Windows 11 中禁用通知徽章
如何在 Windows 11 中禁用启动程序
如何在 Windows 11 中启用上帝模式
如何在 Windows 11 中创建 PDF 文件
如何在 Windows 11 中更改 Microsoft Store 中的国家/地区
如何在 Windows 11 上隐藏最近的文件和文件夹
如何在 Windows 11 上下载和安装 Minecraft
修复 Windows 11 中的低麦克风音量
如何在 Windows 11 中关闭自适应亮度
如何在 Windows 11 上回滚驱动程序更新
如何在 Windows 11 中查看正在运行的进程
如何从 Windows 11 的任务栏中删除天气小部件
如何在 Windows 11 中创建本地帐户
修复 Windows 11 上丢失的 VCRUNTIME140.dll
如何在 Windows 11 中禁用 Xbox 游戏栏
如何在 Windows 11 中对硬盘驱动器进行分区