Click here to Skip to main content
15,888,527 members
Home / Discussions / C#
   

C#

 
Questionprocess.startinfo Pin
arkiboys13-Jul-09 20:19
arkiboys13-Jul-09 20:19 
AnswerRe: process.startinfo Pin
Curtis Schlak.13-Jul-09 20:58
Curtis Schlak.13-Jul-09 20:58 
GeneralRe: process.startinfo Pin
arkiboys13-Jul-09 21:30
arkiboys13-Jul-09 21:30 
GeneralRe: process.startinfo Pin
Curtis Schlak.14-Jul-09 13:28
Curtis Schlak.14-Jul-09 13:28 
QuestionGet BIOS Date Pin
rhtbhegade13-Jul-09 19:52
rhtbhegade13-Jul-09 19:52 
AnswerRe: Get BIOS Date Pin
himanshu256113-Jul-09 20:23
himanshu256113-Jul-09 20:23 
GeneralRe: Get BIOS Date Pin
Fred 3417-Oct-09 0:34
Fred 3417-Oct-09 0:34 
AnswerRe: Get BIOS Date Pin
Tamer Oz13-Jul-09 20:34
Tamer Oz13-Jul-09 20:34 
You can quety WMI with System.Management Namespace

Here is an example. ReleaseDate property is what you are looking for

private void Form1_Load(object sender, EventArgs e)
 {
     List("Select * from Win32_BIOS");
 }

 private void List(string query)
 {
     ManagementObjectSearcher m = new ManagementObjectSearcher();
     m.Query = new ObjectQuery(query);
     foreach (ManagementObject mo in m.Get())
     {
         foreach (PropertyData pd in mo.Properties)
         {
             if (mo[pd.Name] != null)
             {
                 if (mo[pd.Name] is string[])
                 {
                     foreach (string s in (string[])mo[pd.Name])
                     {
                         MessageBox.Show(s);
                     }
                 }
                 else
                 {
                     MessageBox.Show(pd.Name + ":" + mo[pd.Name].ToString());
                 }
             }
         }
     }
 }

GeneralRe: Get BIOS Date Pin
rhtbhegade13-Jul-09 20:59
rhtbhegade13-Jul-09 20:59 
GeneralRe: Get BIOS Date Pin
Tamer Oz13-Jul-09 21:05
Tamer Oz13-Jul-09 21:05 
GeneralRe: Get BIOS Date Pin
rhtbhegade13-Jul-09 21:32
rhtbhegade13-Jul-09 21:32 
QuestionWhat are the pre-requisite to develop a software which facilitates VOIP in my LAN? Pin
CoderForEver13-Jul-09 19:34
CoderForEver13-Jul-09 19:34 
AnswerRe: What are the pre-requisite to develop a software which facilitates VOIP in my LAN? Pin
Henry Minute14-Jul-09 0:15
Henry Minute14-Jul-09 0:15 
GeneralRe: What are the pre-requisite to develop a software which facilitates VOIP in my LAN? Pin
CoderForEver14-Jul-09 8:01
CoderForEver14-Jul-09 8:01 
GeneralRe: What are the pre-requisite to develop a software which facilitates VOIP in my LAN? Pin
Henry Minute14-Jul-09 8:18
Henry Minute14-Jul-09 8:18 
AnswerRe: What are the pre-requisite to develop a software which facilitates VOIP in my LAN? Pin
CoderForEver15-Jul-09 7:50
CoderForEver15-Jul-09 7:50 
GeneralRe: What are the pre-requisite to develop a software which facilitates VOIP in my LAN? Pin
Henry Minute15-Jul-09 13:13
Henry Minute15-Jul-09 13:13 
QuestionSimple Plugin Architecture Pin
Baeltazor13-Jul-09 19:28
Baeltazor13-Jul-09 19:28 
AnswerRe: Simple Plugin Architecture Pin
Curtis Schlak.13-Jul-09 21:01
Curtis Schlak.13-Jul-09 21:01 
GeneralRe: Simple Plugin Architecture Pin
Baeltazor13-Jul-09 21:06
Baeltazor13-Jul-09 21:06 
GeneralRe: Simple Plugin Architecture Pin
Curtis Schlak.14-Jul-09 13:27
Curtis Schlak.14-Jul-09 13:27 
QuestionHow to Extract/Search Office Document using Indexing Services. Pin
alisolution13-Jul-09 18:10
alisolution13-Jul-09 18:10 
QuestionHow do you create 2 random values [modified] Pin
Nathan Revka13-Jul-09 15:55
Nathan Revka13-Jul-09 15:55 
AnswerRe: How do you create 2 random values Pin
mikanu13-Jul-09 16:00
mikanu13-Jul-09 16:00 
AnswerRe: How do you create 2 random values Pin
Christian Graus13-Jul-09 16:30
protectorChristian Graus13-Jul-09 16:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.