-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.cpp
297 lines (297 loc) · 4.92 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
#include <iostream>
#include <Windows.h>
#include <tchar.h>
#include <string>
#include <vector>
#include <sstream>
void ccolor
(WORD fclr) {
HANDLE
hcnsl =
GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleTextAttribute(
hcnsl,
fclr);
}
void
clrconsole() {
system("cls");
}
void
phed() {
ccolor(14);
std::cout << "==== System Information Checker ====" << std::endl;
std::cout << std::
endl;
ccolor
(7);
}
void prmen(
) {
ccolor(11
);
std::cout << "Select the information you want to check:" << std::endl;
std::cout <<
"1. HW Profile Info" << std::endl;
std::cout <<
"2. Serial Number (Win32 Physical Media)" << std::endl;
std::cout <<
"3. UUID (CSProduct)" << std::endl;
std::cout << "4. Serial Number (Disk Drive)" << std
::endl;
std::cout << "5. Serial Number (Baseboard)" << std::endl;
std::cout <<
"6. Serial Number (BIOS)" << std::endl;
std::cout << "7. Processor ID (CPU)" << std::
endl;
std::cout << "8. Serial Number (Memory Chip)" << std::endl;
std::cout <<
"9. Serial Number (Operating System)" << std::endl;
std::cout <<
"10. Serial Number (Volume)" << std::endl;
std::cout <<
"11. Volume Serial Number (Logical Disk)" << std::endl;
std::cout <<
"12. MAC Address (NIC)" << std::endl;
std::cout << "0. Exit" << std::endl;
ccolor(7);
}
std::string
excomm(const
std::string& forcom
) {
std::string forout
;
char forbuf[128];
FILE* forpipe = _popen(
forcom.c_str(), "r")
;
if (forpipe) {
while (!
feof(forpipe)) {
if (fgets
(forbuf, 128,
forpipe) != nullptr)
forout +=
forbuf;
}
_pclose(
forpipe);
}
return
forout;
}
std::string
bserial(
) {
const int
bsize = 255;
char
buf[
bsize];
std::
string serl;
if (GetSystemFirmwareTable('RSMB', 0,
buf,
bsize) != 0) {
serl = std::
string(buf,
bsize);
serl.erase(
std::remove(
serl.begin()
, serl.end(),
'\0'), serl.
end());
}
return
serl;
}
std::
vector<std::string>
memser
() {
std::string
fkcm =
"wmic memorychip get serialnumber";
std::string
outp =
excomm(
fkcm);
std::vector
<std::string>
sernum;
std::
istringstream iss(
outp);
std::string
line;
std::getline(
iss, line);
while (std
::getline(iss, line))
{
if (!line.empty())
sernum.
push_back(line);
}
return
sernum;
}
void
pinfo()
{
clrconsole();
ccolor(11);
std::cout << "=== HW Profile Info ===" << std::endl;
ccolor(2);
HW_PROFILE_INFO
hpofino;
GetCurrentHwProfile(&
hpofino);
std::
wcout << hpofino.
szHwProfileGuid << std::endl;
ccolor(7);
std::cout << std::endl;
system("pause");
}
void
serr(
const char*
wmiccmd) {
clrconsole();
ccolor(11);
std::cout << "=== Serial Number ===" << std::endl;
ccolor(2);
if (wmiccmd ==
"wmic bios get serialnumber") {
std::string
sernummx =
bserial(
);
if (!sernummx.
empty())std::cout <<
sernummx << std::
endl;
else std::cout << "Unable to retrieve BIOS serial number." << std::endl;
}
else
if (wmiccmd ==
"wmic memorychip get serialnumber") {
std::vector<std::string>
memseria =
memser
();
if (!
memseria.
empty()) {
for (const std::string&
serri :
memseria)
{
std::cout <<
serri << std::
endl;
}
}
else {
std::cout << "Unable to retrieve memory chip serial numbers." << std::
endl;
}
}
else {
std::string
foroutxv =
excomm(
wmiccmd);
std::
cout << foroutxv;
}
ccolor(7);
std::cout << std::endl;
system("pause");
}
void
chouice(int
fchoice) {
switch (
fchoice) {
case 0:exit(
0);
case 1:
pinfo()
;
break;
case 2:
serr(
"wmic path win32_physicalmedia get SerialNumber");
break;
case 3:
serr(
"wmic csproduct get UUID");
break;
case 4:
serr(
"wmic diskdrive get SerialNumber");
break;
case 5:
serr(
"wmic baseboard get SerialNumber");
break;
case 6:
serr(
"wmic bios get serialnumber");
break;
case 7:
serr(
"wmic cpu get ProcessorId");
break;
case 8:
serr(
"wmic memorychip get serialnumber");
break;
case 9:
serr(
"wmic os get SerialNumber /value");
break;
case 10:
serr(
"wmic volume get SerialNumber");
break;
case 11:
serr(
"wmic logicaldisk get VolumeSerialNumber");
break;
case 12:
serr(
"wmic nicconfig get MACAddress");
break;
default:
clrconsole();
ccolor(12);
std::cout << "Invalid choice. Please try again." << std::endl;
ccolor(7);
std::cout << std::endl;
system("pause");
break;
}
}
int main() {
while (true) {
clrconsole();
phed();
prmen();
int
fchn;
std::cout <<
"Enter your choice: ";
std::cin >>
fchn;
std::cout <<
std::endl;
chouice(
fchn);
}
return 0;
}