Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
VB.NET Computer Information [SRC]
#1
A few things that might help..

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

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

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

Gets OS Name:
Code:
Textbox1.text = My.Computer.Info.OSFullName

Gets OS Version & Build Number:
Code:
Textbox1.text = My.Computer.Info.OSVersion

Gets BIOS Version:
Code:
Textbox1.text = Microsoft.Win32.Registry.GetValue("HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\SystemInformation", "BIOSVersion", "")

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

Gets Total Physical Memory:
Code:
Textbox1.text = My.Computer.Info.TotalPhysicalMemory

Gets Available Physical Memory:
Code:
Textbox1.text = My.Computer.Info.AvailablePhysicalMemory

Gets Clipboard Text:
Code:
Textbox1.text = My.Computer.Clipboard.GetText

Gets Local Time:
Code:
Textbox1.text = My.Computer.Clock.LocalTime

Blackhat
Reply


Messages In This Thread
VB.NET Computer Information [SRC] - by Fragma - 05-22-2010, 06:16 AM
RE: VB.NET Computer Information [SRC] - by Braco - 05-24-2010, 10:01 AM
RE: VB.NET Computer Information [SRC] - by Fragma - 05-24-2010, 10:36 AM
RE: VB.NET Computer Information [SRC] - by Braco - 05-24-2010, 12:43 PM
RE: VB.NET Computer Information [SRC] - by Fragma - 05-24-2010, 02:53 PM
RE: VB.NET Computer Information [SRC] - by Braco - 05-24-2010, 02:55 PM
RE: VB.NET Computer Information [SRC] - by Natha - 05-31-2010, 01:54 PM
RE: VB.NET Computer Information [SRC] - by Toχic - 05-31-2010, 10:02 PM
RE: VB.NET Computer Information [SRC] - by mmki - 06-03-2010, 09:23 PM
RE: VB.NET Computer Information [SRC] - by mmki - 07-27-2010, 07:39 PM
RE: VB.NET Computer Information [SRC] - by Lith - 12-12-2010, 04:51 PM
RE: VB.NET Computer Information [SRC] - by Fragma - 01-07-2012, 09:58 AM
RE: VB.NET Computer Information [SRC] - by Fragma - 01-07-2012, 10:53 AM
RE: VB.NET Computer Information [SRC] - by Fragma - 01-07-2012, 03:43 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [VB.NET] Animated Form Extend [SRC] Fragma 6 5,288 10-10-2013, 12:18 PM
Last Post: Saket
  [VB.Net][SRC] YouTube Bot HF~Legend 5 3,385 11-25-2012, 05:54 AM
Last Post: Ixam
  [VB.Net][SRC]ProgressBar Color HF~Legend 14 6,913 09-08-2012, 04:18 PM
Last Post: spesificrelax
  Computer Information - Program Made By Me BreShiE 25 7,390 06-29-2012, 06:01 PM
Last Post: iRtehLeet
  [VB.NET] Basic Reverse Connection RAT [SRC] hasam 1 2,868 02-01-2012, 03:10 PM
Last Post: AceInfinity

Forum Jump:


Users browsing this thread: 1 Guest(s)