programmershelp source code examples for asp, php, perl, delphi, c, c++, visual basic, java and others
programmershelp source code examples for asp, php, perl, delphi, c, c++, visual basic, java and others
programmershelp source code examples for asp, php, perl, delphi, c, c++, visual basic, java and others
   Main Menu
programmershelp source code examples for asp, php, perl, delphi, c, c++, visual basic, java and others

HOME

.Net
ASP
Assembly
C
C++
Delphi
HTML
Java
JavaScript Site
MySQL
PC interface
Powershell
Perl
PHP
VBScript
Visual Basic
XML

US Job listings




   Misc
programmershelp source code examples for asp, php, perl, delphi, c, c++, visual basic, java and others

   Amazon
programmershelp source code examples for asp, php, perl, delphi, c, c++, visual basic, java and others

   Links
programmershelp source code examples for asp, php, perl, delphi, c, c++, visual basic, java and others

programmershelp source code examples for asp, php, perl, delphi, c, c++, visual basic, java and others
Code examples are sponsored by Webmastersearn : make money with your website

 

display services in a console window

display services in a console window

Imports System.Management

Module Module1
Sub Main()
Dim query As ManagementObjectSearcher
Dim queryCollection As ManagementObjectCollection
Dim co As ConnectionOptions
Dim oq As System.Management.ObjectQuery
Dim ms As System.Management.ManagementScope
Dim mo As ManagementObject
Dim strQuery As String

strQuery = "SELECT * FROM Win32_Service"

co = New ConnectionOptions()
ms = New System.Management.ManagementScope("\\" + "." + "\root\cimv2", co)
oq = New System.Management.ObjectQuery(strQuery)
query = New ManagementObjectSearcher(ms, oq)

Try
queryCollection = query.Get()
Catch e1 As Exception
Console.WriteLine("Error: " + e1.ToString())
End Try

For Each mo In queryCollection
Console.WriteLine(mo("Name").ToString() + " [" + mo("StartMode").ToString() + "]")
Next

End Sub
End Module



Clickbank mall, make money
sell software, make money
Hosted magazine site : make money with no website



 


 




   Sponsors
 

   Software
500 Java Tips E-book
PHP editor
PERL editor
Beginning Java
Beginning Visual Basic
Learn VB.net
Learn VB 6
VB and databases
ASP image library
C++ builder programming
C++ fundamentals

   Source Code
strip html tags from some text(php)
get the computer name(c)
Find a word in a string(ASP)
an explode function example(php)
close any app(VB)
Create a random file(C Sharp)
scrolling message in a text box(Javascript)
reverse a string VB6 onwards(VB)




Copyright © 2004 by programmershelp.co.uk