You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### SSD is a simple and lightweight tool to obtain some information about the storage devices found inside of your computer
3
+
4
+
# How it works
5
+
SSD parses the output of [smartctl.exe](https://www.smartmontools.org/wiki/Download), gathering the required data to supply the infromation of the drives to the program.
6
+
- First it determines the storage devices in your computer using the `smartctl.exe --scan` command
7
+
- Then it runs the command `smartctl.exe -x /dev/{num_of_storage_device}` for each drive found in your system
8
+
- After that it parses the output of the commands using regular expressions
9
+
- If the S.M.A.R.T. data does not provide the condition of the device (which it usually never does for HDD-s) it uses an algorithm based on some factors to calculate it
10
+
11
+
# Compatibility
12
+
SSD is made in .NET 4.0 so it should theoradically run on systems as low as Windows XP SP3 but its functionality is yet to be tested on older systems
13
+
14
+
# How to build
15
+
- Download the project as a .ZIP from this GitHub page
16
+
- Open the .sln is Visual Studio
17
+
- Click 'Build' --> 'Build Solution'
18
+
- When it is done building make sure to place [smartctl.exe](https://sourceforge.net/projects/smartmontools/files/smartmontools/7.4/smartmontools-7.4-1.win32-x86-pre-vista-setup.exe/download) in the same directory as `SSD.exe` (It is already included in the release version, you only need to do it if you build it yourself)
19
+
20
+
# Features
21
+
SSD lists the following informations about your drives:
22
+
- Model
23
+
- Health
24
+
- Temperature
25
+
- Power-On Hours
26
+
- Start / Stop Count (In case of HDD)
27
+
- HWID
28
+
- Health
29
+
- GigaBytes Written (In case of SSD)
30
+
- Bas Sectors (In case of HDD)
31
+
32
+
# Why SSD?
33
+
While this program might not be as advanced as other storage device info tools like `CrystalDisk Info` or `HD Sentinel` it is still a good choice if you desperately need something to check the status of your drives
34
+
35
+
# Credits
36
+
Credits to [smartmontools](https://www.smartmontools.org/) for smartctl.exe
0 commit comments