File tree 1 file changed +33
-0
lines changed
1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ @ echo off
2
+ echo Checking your system info, Please waiting...
3
+ systeminfo | findstr /c:" Host Name"
4
+ systeminfo | findstr /c:" Domain"
5
+ systeminfo | findstr /c:" OS Name"
6
+ systeminfo | findstr /c:" OS Version"
7
+ systeminfo | findstr /c:" System Manufacturer"
8
+ systeminfo | findstr /c:" System Model"
9
+ systeminfo | findstr /c:" System type"
10
+ systeminfo | findstr /c:" Total Physical Memory"
11
+ ipconfig | findstr IPv4
12
+
13
+ echo .
14
+
15
+ echo Hard Drive Space:
16
+ wmic diskdrive get size
17
+
18
+ echo .
19
+ echo Check Full Diagnostic Tool:
20
+ dxdiag /t dxdiag.txt
21
+ if exist dxdiag.txt (echo File exists & type dxdiag.txt >> fullreport.txt) else echo File Does Not Exist & goto end
22
+ if exist fullreport.txt echo File Safely appended to fullreport.txt
23
+ :end
24
+
25
+ echo Service Tag:
26
+ wmic bios get serialnumber
27
+ echo .
28
+ echo CPU:
29
+ wmic cpu get name
30
+
31
+ echo Task Completed!
32
+
33
+ pause
You can’t perform that action at this time.
0 commit comments