Showing posts with label information. Show all posts
Showing posts with label information. Show all posts

Thursday, January 12, 2017

Using RegDevelop to Create your own Hardware and System Information Program

Using RegDevelop to Create your own Hardware and System Information Program


Gathering of computer hardware and system information about the central processing unit (CPU), Memory Card (RAM), BIOS, motherboard, and other hardware peripherals are usually needed in many cases for hardware verification, driver installation and driver update.

hardware

Here’s a guide to create your own program using Regdevelop. All you need are commands use to get the hardware information.

How-to-do

Open the program and drag the button control and start configuring the settings.

buttoncontrol

Sample Settings

settings

hardwareinfo

----------------------------------------------------------------

Caption

CPU Current Voltage and Caption

StartProcess

cmd /k wmic cpu get caption,currentvoltage

----------------------------------------------------------------

Caption

System Information Tool

StartProcess

msinfo32

----------------------------------------------------------------

Caption

Current Clock Speed

StartProcess

wmic cpu get CurrentClockSpeed,MaxClockSpeed /every:3

----------------------------------------------------------------

Caption

Memory Card Information

StartProcess

cmd /k wmic memorychip get FormFactor,serialnumber,partnumber,speed,capacity,name

----------------------------------------------------------------

Caption

BIOS Information

StartProcess

cmd /k wmic bios get name,version,serialnumber

----------------------------------------------------------------

Caption

BaseBoard Information

StartProcess

cmd /k wmic baseboard get manufacturer,serialnumber

----------------------------------------------------------------

Caption

Get Network Card MacAddress

StartProcess

cmd /k wmic nic get macaddress,description,speed

----------------------------------------------------------------

Caption

CDROM Drive Information

StartProcess

cmd /k wmic cdrom get drive,id,volumeserialnumber,manufacturer

----------------------------------------------------------------

Caption

Disk Drive Information

StartProcess

cmd /k wmic diskdrive get model,serialnumber,size

----------------------------------------------------------------

Caption

DirectX Diagnostic Tool

StartProcess

dxdiag.exe

----------------------------------------------------------------

Finally, Click the Build Now Button. Enjoy!


Go to link Download

Read more »

Saturday, November 19, 2016

Virus that steals bank information is on the rise

Virus that steals bank information is on the rise


 

The BBC is reporting that Zues, a virus that steals your online bank account information is on the rise. Trusteer says of the 5.5 million computers that they monitor, one in 3,000 is infected with the Zues virus.

Zues 1.6 can infect users using both Internet Explorer and Firefox. Once infected the virus records your keystrokes when logging into your banks website. The data is then sent to a remote server where it is used or sold by the cyber gang.

"We expect this new version of Zeus to significantly increase fraud losses, since nearly 30% of internet users bank online with Firefox and the infection is growing faster than we have ever seen before," said Amit Klein, chief technology officer at Trusteer.

In March 2010, parts of the primary control center for the Zeus botnet were taken offline when the Kazakhstani ISP that was being used to administer it was cut off. Unfortunately, though, it is back on the rise as the hackers have started to expand their botnet.

 

via http://www.neowin.net/


Go to link Download

Read more »