简体   繁体   English

在 Windows 10 上使用端口 8000 停止未知的 AppDetectService

[英]Stop unknown AppDetectService using port 8000 on windows 10

I have an unknown AppDetectService using my port 8000 and I am not able to figure out how to close it down or kill any process that seems to be running it.我有一个未知的 AppDetectService 使用我的端口 8000,我无法弄清楚如何关闭它或杀死任何似乎正在运行它的进程。 Its being run by System process on PID 4(found that by netstat and searching through task manager).它由系统进程在 PID 4 上运行(通过 netstat 发现并通过任务管理器搜索)。 Trying to search for the file running it on task manager leads to ntoskrnl.exe.尝试在任务管理器上搜索运行它的文件会导致 ntoskrnl.exe。 Also task manager shows it may slightly be using GPU.任务管理器也显示它可能会稍微使用 GPU。 So my guess is either a system process is holding the port or more probably something is using some kind of system available servers to host a service.所以我的猜测是系统进程持有端口,或者更可能是使用某种系统可用服务器来托管服务。 Hitting it on the browser shows up this page:在浏览器上点击它会显示这个页面: 在此处输入图片说明 Netstat results:网络统计结果: 在此处输入图片说明

task manager screenshot showing GPU may also be firing:任务管理器屏幕截图显示 GPU 也可能正在触发: 在此处输入图片说明

Please help me kill this abomination once and for all.请帮我一劳永逸地杀死这个可憎的东西。

I have used Process Explorer to find out what service was using this port.我已使用Process Explorer找出使用此端口的服务。 Since it was impossible to find it even like this, I started to shut down service by service until port 8000 wasn't occupied any more.既然这样也找不到了,我就开始逐个关闭服务,直到8000端口不再被占用。

In my case, port 8000 was taken over by drivers for Sound BlasterX AE-5 sound card.就我而言,端口 8000 被Sound BlasterX AE-5声卡的驱动程序接管 Process Creative.AudPosService located in C:\\Program Files (x86)\\Creative\\Connection Service has been using this port.位于C:\\Program Files (x86)\\Creative\\Connection Service进程Creative.AudPosService一直在使用此端口。

Luckily, it is possible to change this port.幸运的是,可以更改此端口。 Open Creative.AudPosService.exe.config and change line where port number is located <add baseAddress="http://localhost:8000/"/> to <add baseAddress="http://localhost:9999/"/> or anything else that don't interfere with your work.打开Creative.AudPosService.exe.config并将端口号所在的行<add baseAddress="http://localhost:8000/"/>更改为<add baseAddress="http://localhost:9999/"/>或任何其他不干扰您工作的东西。 Restart windows and it should be fine.重启windows应该没问题。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM