mirror of
https://github.com/frankwxu/digital-forensics-lab.git
synced 2026-04-10 12:13:44 +00:00
add computer skills tutorial
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,3 @@
|
||||
@ECHO OFF
|
||||
ECHO Hello World!
|
||||
PAUSE
|
||||
@@ -0,0 +1 @@
|
||||
"hello world"
|
||||
25
Basic_Computer_Skills_for_Forensics/workspace/sys_info.bat
Normal file
25
Basic_Computer_Skills_for_Forensics/workspace/sys_info.bat
Normal file
@@ -0,0 +1,25 @@
|
||||
@ECHO OFF
|
||||
:: This batch file details Windows 10, hardware, and networking configuration.
|
||||
TITLE System Info
|
||||
ECHO Please wait... Checking system information.
|
||||
:: Section 1: Windows 10 information
|
||||
ECHO ==========================
|
||||
ECHO WINDOWS INFO
|
||||
ECHO ============================
|
||||
systeminfo | find "OS Name"
|
||||
systeminfo | find "OS Version"
|
||||
systeminfo | find "System Type"
|
||||
:: Section 2: Hardware information.
|
||||
ECHO ============================
|
||||
ECHO HARDWARE INFO
|
||||
ECHO ============================
|
||||
systeminfo | find "Total Physical Memory"
|
||||
wmic cpu get name
|
||||
wmic diskdrive get name,model,size
|
||||
:: Section 3: Networking information.
|
||||
ECHO ============================
|
||||
ECHO NETWORK INFO
|
||||
ECHO ============================
|
||||
ipconfig | findstr IPv4
|
||||
START https://support.microsoft.com/en-us/windows/windows-10-system-requirements-6d4e9a79-66bf-7950-467c-795cf0386715
|
||||
PAUSE
|
||||
Reference in New Issue
Block a user