User: 找到使用8000端口的进程、可执行文件地址和运行命令 Assistant: To find the process, executable file path, and running command for the process using port 8000 in Windows Terminal with pwsh.exe, you can use the `Get-NetTCPConnection` and `Get-Process` cmdlets. Please follow the steps below: 1. Open Windows Terminal and launch pwsh.exe. 2. Run the following command to find the process using port 8000: Get-NetTCPConnection | Where-Object {$_.LocalPort -eq 8000} 3. Note the value in the `OwningProcess` column. This is the Process ID (PID) of the process using port 8000. 4. Run the following command to find the executable file path of the process: (Get-Process -Id [PID]).Path Replace `[PID]` with the actual Process ID obtained in the previous step. 5. Run the following command to find the running command of the process: (Get-Process -Id [PID] | Select-Object -ExpandProperty CommandLine) Replace `[PID]` with the actual Process ID obtained in the first step. These commands will allow you to identify the process, executable file path, and running command for the process using port 8000 in Windows Terminal with pwsh.exe.