Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

How to Get Windows Directory, Computer Name and System Information Details

0.00/5 (No votes)
17 May 2004 1  
This small program demonstrates how to get the Windows directory path name, Computer Name, and System information details
Sample Image - SystemUtility.jpg

Introduction

The utility helps you to understand how to return computer system name/Windows system path and system information from a Windows system (95, 98, NT and XP).

System Library Files

You have to include the following system DLL files into your application.

Private Declare Function GetComputerName Lib "kernel32" _
    Alias "GetComputerNameA" (ByVal lpBuffer As String, nSize As Long) As Long
Private Declare Function GetWindowsDirectory Lib "kernel32.dll" _
    Alias "GetWindowsDirectoryA" (ByVal lpBuffer As String, ByVal nSize As Long) As Long

GetTheComputerName Function

The following GetTheComputerName function returns the computer name from your system. See how the code works with System DLL file.

Public Function GetTheComputerName() As String

    Dim strComputerName As String ' Variable to return the path of computer name
    
    strComputerName = Space(250)  ' Initialize the buffer to receive the string
    GetComputerName strComputerName, Len(strComputerName)
    strComputerName = Mid(Trim$(strComputerName), 1, Len(Trim$(strComputerName)) - 1)
    GetTheComputerName = strComputerName

End Function

GetTheWindowsDirectory Function

The following GetTheWindowsDirectory function returns the Windows system path from your system. See how the code works with System DLL file.

Public Function GetTheWindowsDirectory() As String 
    
    Dim strWindowsDir As String        ' Variable to return the path of Windows Directory
    Dim lngWindowsDirLength As Long    ' Variable to return the length of the path
    
    strWindowsDir = Space(250)         ' Initialize the buffer to receive the string
    lngWindowsDirLength = GetWindowsDirectory
	(strWindowsDir, 250) ' Read the path of the windows directory
    strWindowsDir = Left(strWindowsDir, 
	lngWindowsDirLength) ' Extract the windows path from the buffer
    
    GetTheWindowsDirectory = strWindowsDir 

Displaying the System Information

The following lines of code will display all the system environment variables in a textbox.

Dim intInc As Integer
Dim strDisplay As String
    
Text1 = ""
' Here we start printing
For intInc = 1 To 35
    strDisplay = strDisplay & Environ(intInc)
    strDisplay = strDisplay & Space(5)
Next intInc
    
Text1 = strDisplay

Conclusion

This small program demonstrates how to call the system functions from the Windows DLL file and implement into your system. From this program, you found how to call GetComputerName and GetWindowsSystemDirectoryPath information. Also, you identified the importance of System information using Environ variables. I hope this will help you if you don't have any prior knowledge of system handle functions.

History

  • 17th May, 2004: Initial post

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here