C# Tutorials and offshore development in India
    Tutorials   Resources   Forum   Communities   Interview   Jobs   Projects   Offshore Development    
Silverlight Tutorials | Mentor | Code Converter | Articles | Code Factory | Computer Jokes | Members | Peer Appraisal | IT Companies | Bookmarks | Revenue Sharing |


Prizes & Awards
My Profile



Active Members
TodayLast 7 Days more...

New Feature: Community Sites: Create your own .NET community website and start earning from Google AdSense ! It's Free !






Getting The MAC- Address of any Computer


Posted Date: 10 Sep 2008    Resource Type: Code Snippets    Category: Network

Posted By: Initiotech       Member Level: Gold
Rating:     Points: 10



This Code Demonstrates the use of ManagementObjects to get the MAC ID of any computer.


Public Function GetMACID() As String
Dim macC As ManagementClass = New ManagementClass("Win32_NetworkAdapterConfiguration")
Dim moc As ManagementObjectCollection = macC.GetInstances()
Dim MACID As String = String.Empty
For Each mo As ManagementObject In moc
If (MACID.Equals(String.Empty)) Then
If CBool(mo("IPEnabled")) Then
MACID = mo("MacAddress").ToString()
mo.Dispose()
End If
End If
Next
MACID = MACID.Replace(":", "-")
Return MACID
End Function
[\CODE]

Download Sample Application for usage Details.
================================================================================
Regards Hefin Dsouza

Attachments

  • Download Sample Application (20882-10911-GetMacAddress.rar)



  • Responses


    No responses found. Be the first to respond and make money from revenue sharing program.

    Feedbacks      
    Popular Tags   What are tags ?   Search Tags  
    Return MACID  .  Network  .  Mac Id  .  

    Post Feedback


    This is a strictly moderated forum. Only approved messages will appear in the site. Please use 'Spell Check' in Google toolbar before you submit.
    You must Sign In to post a response.
    Next Resource: To Get the Size of Directory
    Previous Resource: How to get the IP address of the host accessing my site using ASP.Net?
    Return to Discussion Resource Index
    Post New Resource
    Category: Network


    Post resources and earn money!
     
    Related Resources



    dotNet Slackers   BizTalk Adaptors    Web Design

    SPOC

    Contact Us    Privacy Policy    Terms Of Use