微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

使用PowerShell来停止进程,我可以绕过确认吗?

我是一个powerhell新手,但是当我调试一些代码时,我经常发现自己开始并停止一小部分服务.在Power shell中,我可以使用通配符轻松地停止进程,但是这样可以确认.有一个-confirm参数,但是我不能正确使用它?
`Stop-Process -ProcessName alcore.* -Confirm`

我可以绕过确认并停止进程吗?

感谢任何帮助,
〜ck在圣地亚哥

尝试
stop-process -ProcessName alcore.* -Force

从get-help停止进程:

On Windows Vista and later versions of Windows,to stop a process that is not owned by the current user,you must start Windows PowerShell with the “Run as administrator” option. Also,you are prompted for confirmation unless you use the Force parameter.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐