System Information WINDOW??

  • Thread starter Thread starter al
  • Start date Start date
A

al

Greetings,

Can someone please write the code for getting System Information
WINDOW(not just information about the CPU and RAM of the pc)??? I
mean when the user clicks the About option in the main menu of an
applicatin, a small window pops up with a button in it that says
System Information where the user can click that button and get a new
window with all the information about the system. A very similar
window can be accessed through:

My Computer->Control Panel->Administrator Tools->Computer Management.

MTIA,
Grawsha
 
Hi

<<<<<<code>>>>>>

Try
Dim ps As New Process()
Dim psI As New ProcessStartInfo()
psI.FileName =
Environment.GetFolderPath(Environment.SpecialFolder.System) _ &
"\compmgmt.msc"
ps.Start(psI)

Catch ex As Exception
MsgBox(ex.ToString)
End Try

<<<<<<code>>>>>>>>

hth greetz Peter
 
al said:
[Opening system information window]

\\\
Imports Microsoft.Win32
Imports System.IO
..
..
..
Dim s As String = _
Registry.LocalMachine.OpenSubKey( _
"SOFTWARE\Microsoft\Shared Tools\MSINFO" _
).GetValue( _
"Path", _
"" _
)
If File.Exists(s) Then
Process.Start(s)
End If
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top