NBC 101 • Unit 418 min readVery High Exam Frequency

Windows Operating System: Architecture, Desktop Elements, Administrative Tools & Commands

Unit 4: Operating Systems, Windows OS & Computer NetworksFundamentals of Computer

👨‍🏫 Professor's Mental Model: The Modern Visual Corporate Office Suite

Windows OS ek digital corporate office jaisa hai: Desktop aapka physical work table hai, Taskbar par aapki zaroori files aur clock rakhi hai, Start Menu poori company ki directory hai, aur File Explorer aapka filing cabinet hai jisme har document organized folders me band hai. Aur jab kisi computer me koi problem aati hai, toh Task Manager company ke security guard ki tarah kisi bhi badtameez program ko zabardasti band (End Task) kar sakta hai!

Academic Lecture Notes & Solved Study Pages

Unit 4 • Core Concepts, Step-by-Step Proofs & Notebook Solutions

4 Notebook Pages
NOTEBOOK PAGE 1 OF 4

1. Windows OS Evolution & GUI Architecture

Microsoft Windows originated in 1985 as a 16-bit graphical shell running on top of MS-DOS (Windows 1.0 to 3.1). With Windows 95, it transformed into an integrated 32-bit graphical operating system introducing the iconic Start Menu and Taskbar.

Modern Windows (Windows NT architecture: Windows 10 & 11) runs on a dual-mode hybrid kernel:

User Mode: Houses applications, subsystems, and GUI shells isolated from critical memory.
Kernel Mode: Houses the NT Executive, Kernel, Hardware Abstraction Layer (HAL), and Device Drivers with unrestricted physical hardware access.
NOTEBOOK PAGE 2 OF 4

2. Core Desktop Elements & User Navigation

1. Desktop: The primary graphical workspace containing shortcut icons, files, and customizable wallpaper.

2. Taskbar: The persistent strip usually anchored at the bottom containing:

• Start Button: Launches the central catalog of applications, settings, and power controls.
• Pinned & Active Applications: Visual icons showing running programs with live window previews.
• System Tray (Notification Area): Displays system clock, Wi-Fi status, battery, and background services.

3. Window Geometry & Elements: Title bar (with drag-to-move), Window Controls (Minimize, Maximize/Restore, Close), Menu bars/Ribbons, and Scroll bars.

4. Dialog Boxes & Context Menus: Pop-up windows requesting user parameters, and Shortcut Context Menus summoned via Right-Click.

NOTEBOOK PAGE 3 OF 4

3. Windows Administrative Tools

Task Manager (`Ctrl + Shift + Esc`): Real-time monitor of running processes, CPU/RAM/Disk performance graphs, startup programs, and immediate termination of frozen apps ('End Task').
File Explorer (`Win + E`): Hierarchical tree management of files, directories, drive partitions, and network shares.
Control Panel & Settings: Configuration hub for display settings, network adapters, user accounts, and hardware peripherals.
Disk Management (`diskmgmt.msc`): Utility for creating, shrinking, extending, and formatting hard drive partitions (NTFS, exFAT, FAT32).
Device Manager (`devmgmt.msc`): Inspects, installs, updates, and troubleshoots hardware device drivers.
NOTEBOOK PAGE 4 OF 4

4. Essential Windows CLI / DOS Commands Reference

In Windows Command Prompt (`cmd.exe`), commands are classified into two groups:

1. Internal Commands: Built directly into the command interpreter (`command.com` / `cmd.exe`) and loaded into RAM at startup:

• `DIR`: Lists all files and subdirectories in the current path.
• `CD` / `CHDIR`: Changes the current working directory (`cd ..` moves one level up).
• `MD` / `MKDIR`: Creates a new directory/folder.
• `RD` / `RMDIR`: Removes/deletes an empty directory.
• `COPY`: Copies one or more files to a destination.
• `MOVE`: Moves files and renames directories.
• `DEL`: Deletes one or more specified files.
• `REN`: Renames an existing file.
• `CLS`: Clears the terminal screen.
• `TYPE`: Displays contents of a text file on screen.

2. External Commands: Stored as independent executable files (`.exe`, `.com`) on disk:

• `CHKDSK`: Scans disk volume for file system errors and bad sectors.
• `TASKLIST`: Displays all currently executing processes with PIDs and memory usage.
• `TASKKILL`: Terminates a running process by PID or name (`taskkill /PID 1234 /F`).
• `IPCONFIG`: Displays IP address, subnet mask, and default gateway (`ipconfig /all`).
• `PING`: Tests network latency and packet loss to a target host (`ping 8.8.8.8`).
• `SYSTEMINFO`: Outputs detailed OS version, RAM capacity, BIOS version, and processor specs.
Master Windows CLI / DOS Commands Cheat Sheet
CommandTypeSyntax ExampleFunction & University Exam Tip
DIRInternalDIR /p /wLists directory contents; /p pauses per screen, /w displays wide format
CDInternalCD \Users\StudentChanges active directory path; 'CD ..' navigates to parent directory
MD / MKDIRInternalMD ProjectsCreates a new subfolder in the current working directory
RD / RMDIRInternalRD Old_FolderRemoves an empty directory (fails if folder contains files)
COPYInternalCOPY file1.txt D:\BackupDuplicates files to destination without removing source
DELInternalDEL *.tmpPermanently deletes specified files (supports wildcard characters * and ?)
CLSInternalCLSClears terminal screen buffer back to a single command prompt line
TASKLISTExternalTASKLIST /svcLists all active running tasks, PIDs, and memory usage
IPCONFIGExternalIPCONFIG /allDisplays full TCP/IP network adapter configurations and MAC addresses
PINGExternalPING google.comSends ICMP echo request packets to verify network connectivity

🎯 University Exam Scoring Blueprint

  • Explain the difference between Internal and External DOS commands with 3 examples each.
  • List 5 major visual elements of the Windows desktop environment (Desktop, Taskbar, Start Menu, System Tray, File Explorer).
  • Describe the purpose of Task Manager and list 3 performance metrics it tracks.

Top Viva Questions on Windows Operating System: Architecture, Desktop Elements, Administrative Tools & Commands

2 Questions
1

What is the difference between an Internal Command and an External Command in DOS/Windows?

2

How do the commands DEL and RD differ in Windows CLI?