add computer skills tutorial

This commit is contained in:
Frank Xu
2021-06-28 15:55:38 -04:00
parent b68b2ed49f
commit ba0ab30953
7 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
@ECHO OFF
ECHO Hello World!
PAUSE

View File

@@ -0,0 +1 @@
"hello world"

View 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

View File

@@ -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)