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
|
||||
@@ -17,6 +17,10 @@
|
||||
|
||||
## Table of Contents (updating)
|
||||
|
||||
- Basic Computer Skills for Digital Forensics
|
||||
- Windows Command Line Tutorial
|
||||
- Linux Command Line Tutorial
|
||||
- Advanced Linux Command Line Tutorial
|
||||
- Case Study
|
||||
- [Investigating P2P Data Leakage](#Investigating-P2P-Data-Leakage) (added on June 2021)
|
||||
- [Investigating NIST Data Leakage](#Investigating-NIST-Data-Leakage)
|
||||
|
||||
Reference in New Issue
Block a user