save up to 40%

How to enumerate 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 logical drives?

Rating:

Take the following steps to enumerate logical drives:

  1. Create a ConnectionOptions class object as follows:

    Dim op As ConnectionOptions = 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:

    Dim scope As ManagementScope = New ManagementScope("\computername",op)

  4. Create a ObjectQuery class object as follows:

    Dim query As ObjectQuery = New ObjectQuery("Select name, size from Win32_LogicalDisk")

  5. Create a ManagementObjectSearcher class object as follows:

    Dim searcher As ManagementObjectSearcher = New ManagementObjectSearcher(scope, query)

  6. Create a ManagementObjectCollection class object as follows:

    Dim collect As ManagementObjectCollection = searcher.Get()

  7. Display the result as follows:

    Dim obj As ManagementObject
    For Each obj in collect
       Console.WriteLine("Name: "+obj["Name"].ToString())
       Console.WriteLine("Size: "+obj["Size"].ToString())
    Next obj


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.