How can I kill process Windows\\MyProcc.exe from my terminal (Windows-CE 5.0) using C# code?
A code project does exactly what you are looking for. I found this class very usefull in Killing processes in CE.
http://www.codeproject.com/Articles/36841/Compact-Framework-Process-class-that-supports-full
ProcessInfo[] list = ProcessCE.GetProcesses();
foreach (ProcessInfo pinfo in list)
{
if (pinfo.FullPath.EndsWith("MyExe.exe"))
pinfo.Kill();
}