Subscribe via RSS ... Subscribe via e-mail ... Follow me on Twitter ... Follow me on Facebook ...

tag archive 'Services'

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 using System; using System.ServiceProcess; using System.Text;     namespace MyProcesses { class MyProcesses { static void Main(string[] args) { ServiceController[] lServices = ServiceController.GetServices();   foreach (ServiceController lServcie in ServiceController.GetServices()) { Console.WriteLine("{0} -> [...]

read full post »

HandleServices

Tool name : ListRunningServices 0.2   Description : HandleServices is a tool to manage installed services on a Windows system. Depending on the passed parameters it either lists all installed services (regardless of its running status), it stops services by its name or it restarts a previously stopped service. Consider it as the sc.exe‘s small [...]

read full post »