相当于 Windows CE 的‘ps’吗?

相当于 Windows CE 的‘ps’吗?

对于 Windows CE(我通过 telnet 访问其命令行),Linux 中的“ps”(即显示正在运行的进程列表的命令)命令的等效项是什么?

答案1

面向 CE 的 Microsoft Power Toys,使用RAPI调试。

答案2

尝试程序清单来自 Sysinternals。它可以为您提供本地计算机或远程系统的列表。我不知道它是否适用于 WinCE 系统,但它不是很大,试用起来应该不会花很长时间。

C:\> pslist /?

Usage: pslist.exe [-d][-m][-x][-t][-s [n] [-r n] [\\computer [-u username][-p password][name|pid]
   -d          Show thread detail.
   -m          Show memory detail.
   -x          Show processes, memory information and threads.
   -t          Show process tree.
   -s [n]      Run in task-manager mode, for optional seconds specified.
               Press Escape to abort.
   -r n        Task-manager mode refresh rate in seconds (default is 1).
   \\computer  Specifies remote computer.
   -u          Optional user name for remote login.
   -p          Optional password for remote login. If you don't present
               on the command line pslist will prompt you for it if necessary.
   name        Show information about specified process.
   pid         Show information about specified process.

答案3

输入kill- 这将按名称及其 PID 列出进程 - 然后输入kill *PID*(其中 PID 是实际 PID),然后它将终止该进程。

答案4

从命令行输入:TASKLIST(大写、小写无所谓。这不是 Unix...)

添加 /? 以获取命令行选项的概述。

已使用 Vista 进行了测试,不知道它是否可以在 XP 及更低版本上使用...


哎呀...你说的是 Windows CE?这是用于移动设备的 Windows 版本。我想知道它是否允许使用相同的命令,但我认为不允许。

相关内容