Hmmm good idea
I found this code, but has no idea if it will work on a normal Windows 95 system aswell... Anyone wanna test this for me ??

)
Private Sub Command1_Click()
'========================
Dim WMI
Dim wmiWin32Objects
Dim wmiWin32Object
Dim ComputerName As String
ComputerName = "." ' must be your computers name for it to work
Set WMI = GetObject("WinMgmts://" & ComputerName)
Set wmiWin32Objects = WMI.InstancesOf("Win32_Processor"

With wmiWin32Object
For Each wmiWin32Object In wmiWin32Objects
List1.AddItem "AddressWidth: " & .AddressWidth
List1.AddItem "Architecture: " & .Architecture
List1.AddItem "Availability: " & .Availability
List1.AddItem "Caption: " & .Caption
List1.AddItem "ConfigManagerErrorCode: " & .ConfigManagerErrorCode
List1.AddItem "ConfigManagerUserConfig: " & .ConfigManagerUserConfig
List1.AddItem "CpuStatus: " & .CpuStatus
List1.AddItem "CreationClassName: " & .CreationClassName
List1.AddItem "CurrentClockSpeed: " & .CurrentClockSpeed
List1.AddItem "CurrentVoltage: " & .CurrentVoltage
List1.AddItem "DataWidth: " & .DataWidth
List1.AddItem "Description: " & .Description
List1.AddItem "DeviceID: " & .DeviceID
List1.AddItem "ErrorCleared: " & .ErrorCleared
List1.AddItem "ErrorDescription: " & .ErrorDescription
List1.AddItem "ExtClock: " & .ExtClock
List1.AddItem "Family: " & .Family
List1.AddItem "InstallDate: " & .InstallDate
List1.AddItem "L2CacheSize: " & .L2CacheSize
List1.AddItem "L2CacheSpeed: " & .L2CacheSpeed
List1.AddItem "LastErrorCode: " & .LastErrorCode
List1.AddItem "Level: " & .Level
List1.AddItem "LoadPercentage: " & .LoadPercentage
List1.AddItem "Manufacturer: " & .Manufacturer
List1.AddItem "MaxClockSpeed: " & .maxclockspeed
List1.AddItem "Name: " & .Name
List1.AddItem "OtherFamilyDescription: " & .OtherFamilyDescription
List1.AddItem "PNPDeviceID: " & .PNPDeviceID
List1.AddItem "PowerManagementCapabilities: " & .PowerManagementCapabilities
List1.AddItem "PowerManagementSupported: " & .PowerManagementSupported
List1.AddItem "ProcessorId: " & .ProcessorId
List1.AddItem "ProcessorType: " & .ProcessorType
List1.AddItem "Revision: " & .Revision
List1.AddItem "Role: " & .Role
List1.AddItem "SocketDesignation: " & .SocketDesignation
List1.AddItem "Status: " & .Status
List1.AddItem "StatusInfo: " & .StatusInfo
List1.AddItem "Stepping: " & .Stepping
List1.AddItem "SystemCreationClassName: " & .SystemCreationClassName
List1.AddItem "SystemName: " & .SystemName
List1.AddItem "UniqueId: " & .UniqueId
List1.AddItem "UpgradeMethod: " & .UpgradeMethod
List1.AddItem "Version: " & .Version
List1.AddItem "VoltageCaps: " & .VoltageCaps
List1.AddItem "Description: " & .Description
List1.AddItem "Manufacturer: " & .Manufacturer
List1.AddItem "MaxClockSpeed: " & .maxclockspeed
Next
End With
End Sub