Tugas Remidi PTS Kelas X TKJ
Bagi siswa yang mendapatkan nilai dibawah 72. silakan mengerjakan penugasan Remidi dibawah ini:
A. Penugasan Remidi
1. Buatlah video singkat tentang perangkat keras komputer Input, Proses, Output?
2. Silakan upload video di Youtube kalian masing-masing?
3. Masukkan link youtube pada link Form ini (LINK UPLOAD YOUTUBE)?
Bagi siswa yang mendapatkan nilai diatas atau sama dengan 72 silakan mengerjakan tugas Penugasan Pengayaan (optional boleh mengerjakan atau tidak, yang mengerjakan ada tambahan nilai):
B. Penugasan Pengayaan
1. Tuliskan script bat dibawah ini pada buku kalian
2. Coba kerjakan dan jalankan script ini :
3. Berikan kesimpulan dari script ini (Fungsi, Fitur apa saja, Berikan pendapatmu dari script ini) :
@echo off
chcp 65001 > nul
title System Information Checker
color 0B
mode con: cols=85 lines=30
:menu
cls
echo ========================================
echo SYSTEM INFORMATION CHECKER
echo ========================================
echo 1. Tampilkan Semua Informasi
echo 2. Informasi Windows OS
echo 3. Informasi Partisi Disk
echo 4. Informasi Hostname IP
echo 5. Informasi Hardware
echo 6. Keluar
echo ========================================
set /p choice="Pilih opsi [1-6]: "
if "%choice%"=="1" goto all_info
if "%choice%"=="2" goto os_info
if "%choice%"=="3" goto disk_info
if "%choice%"=="4" goto network_info
if "%choice%"=="5" goto hardware_info
if "%choice%"=="6" exit
echo Pilihan tidak valid, silakan coba lagi.
timeout /t 2 >nul
goto menu
:all_info
cls
echo [INFORMASI WINDOWS OS]
echo ========================================
systeminfo | findstr /C:"Nama OS" /C:"Versi OS" /C:"Pabrikan OS" /C:"Konfigurasi OS" /C:"Tipe Build OS"
echo.
wmic os get osarchitecture,version,caption,installdate /format:table
echo ========================================
echo.
echo [INFORMASI PARTISI DISK]
echo ========================================
wmic logicaldisk get deviceid,volumename,size,freespace,filesystem,description
echo.
echo ========================================
echo.
echo [INFORMASI JARINGAN]
echo ========================================
echo Hostname: %COMPUTERNAME%
echo.
echo Alamat IP:
ipconfig | findstr IPv4
echo.
echo Informasi DNS:
ipconfig /all | findstr "DNS Server"
echo.
echo Informasi Gateway:
ipconfig | findstr "Default Gateway"
echo ========================================
echo.
echo [INFORMASI HARDWARE]
echo ========================================
echo Informasi Processor:
wmic cpu get name,MaxClockSpeed,NumberOfCores,NumberOfLogicalProcessors /format:table
echo.
echo Informasi Memori:
wmic computersystem get TotalPhysicalMemory /format:value
for /f "tokens=2 delims=:" %%a in ('systeminfo ^| findstr /C:"Total Memory Fisik"') do echo Total Memory Fisik: %%a
for /f "tokens=2 delims=:" %%a in ('systeminfo ^| findstr /C:"Memori Fisik Tersedia"') do echo Memori Fisik Tersedia: %%a
echo.
echo Informasi BIOS:
wmic bios get serialnumber,version,manufacturer /format:table
echo ========================================
echo.
pause
goto menu
:os_info
cls
echo [INFORMASI WINDOWS OS]
echo ========================================
systeminfo | findstr /C:"Nama OS" /C:"Versi OS" /C:"Pabrikan OS" /C:"Konfigurasi OS" /C:"Tipe Build OS"
echo.
wmic os get osarchitecture,version,caption,installdate /format:table
echo ========================================
echo.
pause
goto menu
:disk_info
cls
echo [INFORMASI PARTISI DISK]
echo ========================================
wmic logicaldisk get deviceid,volumename,size,freespace,filesystem,description
echo.
echo ========================================
echo.
echo Detail Kapasitas:
echo ----------------------------------------
for /f "skip=1" %%d in ('wmic logicaldisk get deviceid 2^>nul') do (
if exist %%d (
echo Partisi %%d:
for /f "tokens=3" %%s in ('dir %%d ^| findstr "Dir(s)"') do echo Terpakai: %%s
for /f "tokens=3" %%f in ('dir %%d ^| findstr "bytes free"') do echo Free: %%f
echo.
)
)
echo ========================================
echo.
pause
goto menu
:network_info
cls
echo [INFORMASI JARINGAN]
echo ========================================
echo Hostname: %COMPUTERNAME%
echo.
echo Alamat IP:
ipconfig | findstr IPv4
echo.
echo Informasi DNS:
ipconfig /all | findstr "DNS Server"
echo.
echo Informasi Gateway:
ipconfig | findstr "Default Gateway"
echo.
echo Koneksi Aktif:
netstat -n | findstr ESTABLISHED
echo ========================================
echo.
pause
goto menu
:hardware_info
cls
echo [INFORMASI HARDWARE]
echo ========================================
echo Informasi Processor:
wmic cpu get name,MaxClockSpeed,NumberOfCores,NumberOfLogicalProcessors /format:table
echo.
echo Informasi Memori:
wmic computersystem get TotalPhysicalMemory /format:value
for /f "tokens=2 delims=:" %%a in ('systeminfo ^| findstr /C:"Total Memory Fisik"') do echo Total Memory Fisik: %%a
for /f "tokens=2 delims=:" %%a in ('systeminfo ^| findstr /C:"Memori Fisik Tersedia"') do echo Memori Fisik Tersedia: %%a
echo.
echo Informasi BIOS:
wmic bios get serialnumber,version,manufacturer /format:table
echo.
echo Informasi Graphics Card:
wmic path win32_videocontroller get name,AdapterRAM,DriverVersion /format:table
echo ========================================
echo.
pause
goto menu
0 komentar:
Posting Komentar