logo

Getting PC information

By J S
Printer Friendly Version
View My Articles
77 Views
    

This project(PCinfo) is about getting PC or System information from the system such as operating system ,Domain name ,logical Drives, IP address and Environment Variables.


 I have used System class and Environment class.
List of name space used in the project

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Net;
using Microsoft.Win32;
using System.Collections;

private void Form1_Load(object sender, EventArgs e)

{
// I am displaing the information in a label so that it is esay to read .
// just place 5 labels in the form and call this code.

// This line is for getting the system directory
label1.Text = Environment.SystemDirectory;

// This line is for getting the Machine name
label2.Text = Environment.MachineName;

// This line is for getting the system directory (where this project is located)
label3.Text = Environment.CurrentDirectory;

// // This line is for getting the OS version
label4.Text = Environment.OSVersion.ToString();

IDictionary environmentVariables = Environment.GetEnvironmentVariables();

string str2 = "";

string str3 = "";

foreach (DictionaryEntry de in environmentVariables)

{
str2 = de.Key.ToString();

str3 = str3 + str2 + " , ";

}
label5.Text = str3;
}

Hope this helps,

Cheers,
Jay



Didn't Find The Answer You Were Looking For?

EggHeadCafe has experts online right now that may know the answer to your question.  We pay them a bonus for answering as many questions as they can.  So, why not help them and yourself by becoming a member (free) and ask them your question right now?
Ask Question In Live Forum

If you have an OpenID and do not want to become a member of the EggHeadCafe forum, you can also sign on to Chat Chaos and post your question to our real time Silverlight chat application.
Ask Question In Chat Chaos

Article: Getting PC information
J S posted at Monday, September 11, 2006 5:55 AM
Feel free comment or ask a question.
 






  $1000 Contest    [)ia6l0 iii - $228  |  Jonathan VH - $161  |  Huggy Bear - $135  |  F Cali - $95  |  egg egg - $94  |  more Advertise  |  Privacy  |   (c) 2010