在Windows 10中一次关闭所有运行的应用程序?
如何在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 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
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 Administrator2 - type the command
tasklist
and press Enter3 - Now you can see all currently running programs.
4 - Now you need to use a command called
TASKKILL
and use thePID
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