-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCheck System.bat
More file actions
33 lines (27 loc) · 840 Bytes
/
Check System.bat
File metadata and controls
33 lines (27 loc) · 840 Bytes
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
@echo off
echo Checking your system info, Please waiting...
systeminfo | findstr /c:"Host Name"
systeminfo | findstr /c:"Domain"
systeminfo | findstr /c:"OS Name"
systeminfo | findstr /c:"OS Version"
systeminfo | findstr /c:"System Manufacturer"
systeminfo | findstr /c:"System Model"
systeminfo | findstr /c:"System type"
systeminfo | findstr /c:"Total Physical Memory"
ipconfig | findstr IPv4
echo.
echo Hard Drive Space:
wmic diskdrive get size
echo.
echo Check Full Diagnostic Tool:
dxdiag /t dxdiag.txt
if exist dxdiag.txt (echo File exists & type dxdiag.txt >> fullreport.txt) else echo File Does Not Exist & goto end
if exist fullreport.txt echo File Safely appended to fullreport.txt
:end
echo Service Tag:
wmic bios get serialnumber
echo.
echo CPU:
wmic cpu get name
echo Task Completed!
pause