|
-
Apr 12th, 2004, 11:58 AM
#1
Thread Starter
Member
get Services from MMC
Hi There!!
Does anyone know how to retrieve the Services data from MMC?(run services.msc)
Wat i'm trying to do is check my computer for unlicensed softwares. So from Services i can get the softwares that are running at the moment and write em to a database. Thanks in advance.
-
Apr 12th, 2004, 02:58 PM
#2
Thread Starter
Member
aight i found out how 2 get all the processes that are running on my computer...but how do i find out the softwares that arent running so i can check if they licensed or not???
-
Apr 12th, 2004, 03:11 PM
#3
Frenzied Member
how did you get your first problem solved? did you run application.start? or how?
-
Apr 12th, 2004, 03:51 PM
#4
Thread Starter
Member
This is all i did
Dim p As Process
For Each p In Process.GetProcesses()
txtProcessNames.Text = txtProcessNames.Text & p.ProcessName & vbCrLf
Next p
i cant find a way to get all the programs from the Service console. If i do that i can use both.
Last edited by dawgfather; Apr 12th, 2004 at 03:55 PM.
-
Apr 12th, 2004, 04:50 PM
#5
Frenzied Member
VB Code:
' Visual Basic
Dim services() As System.ServiceProcess.ServiceController
services = System.ServiceProcess.ServiceController.GetServices()
HTH,
Mike
-
Apr 12th, 2004, 07:59 PM
#6
Thread Starter
Member
Thanks..got it workin..
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|