在Windows 10中一次关闭所有运行的应用程序?

发布于 2025-01-29 04:56:09 字数 96 浏览 2 评论 0原文

如何在Windows 10中一次关闭所有运行/打开应用程序?我尝试了一些博客说的是开放任务经理>选择所有过程>结束任务。但是,Wins10现在似乎不允许选择多个进程。

How to close all running/open apps at one time in Windows 10? I had tried some blog said open Task Manager > Select all Processes > End Task. However, wins10 now seems like not allowed to select multiple processes.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

诗酒趁年少 2025-02-05 04:56:09

您可以使用cmd,但这有点痛苦,这是解释:

1-运行cmd作为管理员

2-键入命令task> task> taskelist,然后按输入

3-现在您可以看到当前运行的所有程序。

4-现在您需要使用一个名为taskkill的命令,并使用每个程序的pid关闭。

让我们想象一下程序是否具有pid = 21093

您需要使用此命令:

task> task> task> pid 21093/f

,这用于所有pid 这样:

tastkill/pid 21093 1048 1592 1040/f

ps:/f是指强行终止

You can use the cmd but it is a little painful here's the explanation:

1 - run cmd as Administrator

2 - type the command tasklist and press Enter

3 - Now you can see all currently running programs.

4 - Now you need to use a command called TASKKILL and use the PID of every program to close.

Let's imagine if a program have PID = 21093

You'll need to use this command:

TASKKILL /PID 21093 /F

And this goes for all the PID's like this:

TASKKILL /PID 21093 1048 1592 1040 /F

PS: /F means forcibly terminate

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文