• Welcome to ForumKorner!
    Join today and become a part of the community.

[vb.net] Computer Information Source

CodeBreaker

Member
Reputation
0
Computer Information Source


Get the Computer User:
::Alien::
[vb]
Textbox1.Text = Microsoft.Win32.Registry.GetValue("HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion", "RegisteredOwner", "")
[/vb]

Get the Computer Company:
::Alien::
[vb]
Textbox1.text = Microsoft.Win32.Registry.GetValue("HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion", "RegisteredOrganization", "")[/vb]

Gets Processor Name:::Alien::
[vb]
Textbox1.text = Microsoft.Win32.Registry.GetValue("HKEY_LOCAL_MACHINE\Hardware\DESCRIPTION\System\CentralProcessor\0", "Identifier", "")
[/vb]

Gets OS Name:
::Alien::
[vb]
Textbox1.text = My.Computer.Info_OSFullName
[/vb]

Gets OS Version & Build Number:
::Alien::
[vb]
Textbox1.text = My.Computer.Info_OSVersion
[/vb]

Gets System Product Name:::Alien::
[vb]
Textbox1.text = Microsoft.Win32.Registry.GetValue("HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\SystemInformation", "SystemProductName", "")
[/vb]

Gets Total Physical Memory:::Alien::
[vb]
Textbox1.text = My.Computer.Info.TotalPhysicalMemory
[/vb]

Gets Available Physical Memory:::Alien::
[vb]
Textbox1.text = My.Computer.Info.AvailablePhysicalMemory
[/vb]

Gets Clipboard Text:
::Alien::
[vb]
Textbox1.text = My.Computer.Clipboard.GetText
[/vb]

 

OliverE

Power member.
Reputation
0
If you could find the code that gets the os key, that would be awesome and just then send all the details through email to your self ;)
 
Top