How to enumerate the logical drives?

Are you preparing for IT certification? With practice questions, study notes, interactive quizzes, tips and technical articles, uCertify PrepKits ensure that you get a solid grasp of core technical concepts to ace your certification exam in first attempt.

How to enumerate the logical drives?

Rating:

Take the following steps to enumerate the logical drives:

  1. Create a ConnectionOptions class object as follows:

    ConnectionOptions op = new ConnectionOptions();

  2. Assign username and password to the class object as follows:

    op.Username="\uc";
    op.Password = "123acb";


  3. Create a ManagementScope class object as follows:

    ManagementScope scope = new ManagementScope("\computername",op);

  4. Create a ObjectQuery class object as follows:

    ObjectQuery query = new ObjectQuery("Select name, size from Win32_LogicalDisk");

  5. Create a ManagementObjectSearcher class object as follows:

    ManagementObjectSearcher searcher = new ManagementObjectSearcher(scope, query);

  6. Create a ManagementObjectCollection class object as follows:

    ManagementObjectCollection collect = searcher.Get();

  7. Display the result as follows:

    foreach(ManagementObject obj in collect)
    {
       Console.WriteLine("Name: "+obj["Name"].ToString());
       Console.WriteLine("Size: "+obj["Size"].ToString());
    }


Rating:



Other articles

Click here to Article home

 
uCertify.com | Our Company | Articles | Privacy | Security | Contact Us | News and Press Release | uCertify India
MCSE: MCSA, MCTS, MCITP    JAVA Certification: SCJP, SCWCD Cisco Certification: CCNA, CCENT, A+, Network+, Security+
Oracle Certification: OCP 9i, OCP 10g, OCA 9i, OCA 10g CIW foundation    EC-212-32    CISSP    Photoshop ACE    Adobe Flash ACE
© 2008 uCertify.com. All rights reserved. All trademarks are the property of their respective owners.