Unlock For Us

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!


Read more...

Unlock For Us

How to get the Current CPU Clock Speed, Computer Service Tag Number, Bios Name and Version using WMI

Computer stickers holds your computer service tag number or serial number information and if the technical support person needs to get the number as soon as possible. How will you solve the problem using only the command prompt?

Got an overheating problem and you need to check the current clock speed of your computer? Here’s a quick tip for windows built-in utility using Windows Management Instrumentation (WMI) called wmic.

Open the command prompt (Start Search –> cmd) and type the following command for BIOS Name, Service Tag Number and Version

wmic bios get name,serialnumber,version

Computer System Product information Name, Identifying Number and UUID

wmic csproduct get name,identifyingnumber,uuid

CPU Name, Current Clock Speed and Maximum Clock Speed

wmic cpu get name,CurrentClockSpeed,MaxClockSpeed

You can monitor the changes in CPU clock speed every Seconds

e.g. 3 seconds

wmic cpu get name,CurrentClockSpeed,MaxClockSpeed /every:3

 

Thanks for reading the article!


Read more...

Unlock For Us

Using Subst command to create virtual drives

Subst is being use to associate or substitutes folders as virtual drives. The command lets you access data easily and By functionality, its almost the same as creating folders to computer window.

Lets try using the command by creating drive S: using the folder c:\files.

type “cmd” at Start search, and follow the command below

commandprompt

s: – virtual drive letter

files – folder that you want to associate (c:\files)

localdisk

Afterwards, you’ll see the virtual drive instantly. Anyway, the problem with the command, when the computer restarts, all created virtual drives will be deleted automatically.

So, Let’s solve and try loading the commands before logging into windows.

Open your Notepad and write the command

subst s: c:\myfiles\videos
subst x: c:\backup

Use File > Save As and go to the following folder location

C:\Users\[username]\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup

Make sure that you Click ALL Files (*.*) and write the filename

subst_batchfile

Great?!

To delete any virtual drive use the command SUBST Drive /d

e.g. Subst s: /d

Usage

C:\Users\mstouch>subst /?
Associates a path with a drive letter.

SUBST [drive1: [drive2:]path]

SUBST drive1: /D

drive1: Specifies a virtual drive to which you want to assign a path.

[drive2:]path 

Specifies a physical drive and path you want to assign to a virtual drive.

  /D             Deletes a substituted (virtual) drive.

Type SUBST with no parameters to display a list of current virtual drives.

C:\Users\mstouch>

Thanks for reading the article!


Read more...

Unlock For Us

How to Remove items at most recently used lists for Run Window

runmrurunmru_edit

If your computer are shared by your family, privacy sometimes are very important - editing history list from your run window is a very cool topic.

Here’s how…

Open your registry editor, press Win + R and type “regedit”

and go to the folder below

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU

Look for the item that you want to remove from the list and delete

edit

Most of the data in the registry are now secured for the newer version of windows, so, editing and adding data are safe as long as any changes came from the source you trust.

Thanks for reading the article!


Read more...

 

© Naga Heavy Industries (NHI) @2024| Blogger| License Agreement