๐ŸŽ“ Bora Academy FREE

Windows System Administrator Interview Guide (3โ€“5 Years Experience)

Target Roles: Windows System Admin ยท IT Infrastructure Engineer ยท Server Engineer ยท IT Operations Engineer ยท Senior Desktop Engineer (L3)

Chapter 1: Technical Interview Questions (100 Questions)
๐Ÿ–ฅ๏ธ Section 1: Windows Server Administration (Questions 1โ€“20)
1. Tell us about your System Administrator experience.
"Over the past 4 years, I have served as a Windows System Administrator managing enterprise Windows Server 2016/2019/2022 infrastructure, Active Directory domain services, GPO management, Hyper-V virtualization, WSUS patch deployment, Windows Admin Center operations, and automated server reporting via PowerShell."
2. What are the core roles and responsibilities of a System Administrator?
Managing Windows Server OS lifecycle, Active Directory user/group permissions, Group Policy enforcement, patch deployment (WSUS), monitoring system performance metrics (CPU, RAM, Disk I/O), hypervisor maintenance, backup/restore execution, and responding to high-severity infrastructure incidents.
3. Explain Windows Server modular architecture and user/kernel modes.
Windows Server uses a hybrid kernel architecture divided into **User Mode** (applications, Win32 subsystem, service processes executing with restricted hardware access) and **Kernel Mode** (HAL, OS Executive, graphics drivers, and kernel core executing with full hardware privilege access).
4. Compare Windows Server 2016, 2019, and 2022 features.
  • Server 2016: Introduced Windows Containers, Nano Server, Storage Spaces Direct (S2D), and Shielded VMs.
  • Server 2019: Added Hybrid Cloud integration via Windows Admin Center, System Insights ML analytics, Storage Migration Service, and enhanced Defender ATP.
  • Server 2022: Adds Secured-core server protection, TLS 1.3 enabled by default, DNS-over-HTTPS, SMB AES-256 encryption, and hybrid management via Azure Arc.
5. What are Server Roles vs Server Features in Windows Server?
  • Server Roles: Primary business services defining what the server *does* (e.g., Active Directory Domain Services, DNS Server, DHCP Server, Hyper-V, File & Storage Services).
  • Server Features: Supporting software tools and utilities enhancing system capabilities (e.g., Failover Clustering, BitLocker, Telnet Client, PowerShell ISE).
6. Explain Server Manager and how to manage remote servers centrally.
A management console (`ServerManager.exe`) in Windows Server allowing admins to provision roles/features and monitor event logs. Remote servers are added to a Server Pool using WinRM (Windows Remote Management) over HTTP (Port 5985) or HTTPS (Port 5986).
7. What is Windows Admin Center (WAC) and why is it preferred over MMC?
A modern, browser-based, lightweight management platform (`https://server:6516`) that consolidates MMC snap-ins, Event Viewer, Task Manager, Device Manager, PowerShell console, and Azure Arc hybrid management into a single gateway interface without requiring RDP sessions.
8. How do you perform a clean installation and post-install hardening of Windows Server?
Boot from install media → Select edition (**Server Core** preferred or Desktop Experience) → Format partitions (GPT/NTFS). Post-install: Rename computer, assign static IP, run Windows Updates, change default Administrator account name, configure remote management, enable Firewall, and join to Active Directory.
9. Explain the Windows Server boot process in detail.
  1. UEFI/BIOS: Executes POST, reads NVRAM to load UEFI bootloader from EFI System Partition.
  2. Bootmgr: Reads BCD database and loads `winload.efi`.
  3. Winload: Loads kernel (`ntoskrnl.exe`), HAL, and Boot-Start drivers into memory.
  4. Kernel Init: `ntoskrnl.exe` initializes subsystems and spawns `smss.exe` (Session Manager).
  5. User Subsystem: `smss.exe` launches `winlogon.exe`, `lsass.exe`, and `services.exe`.
10. What is Directory Services Restore Mode (DSRM) and how do you access it?
A special boot mode on Domain Controllers used to perform offline maintenance or restore Active Directory from backup (`NTDS.dit`). Access by selecting DSRM during boot (F8) or setting boot configuration using `bcdedit`. Requires the offline DSRM Administrator password configured during DC promotion.
11. How do you troubleshoot a Windows Server that fails to boot (Boot Loop / Stop Errors)?
Boot into Windows RE → Launch Command Prompt. 1. Run offline SFC: `sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows`, 2. Repair BCD database (`bootrec /rebuildbcd`), 3. Check for corrupt disk volume (`chkdsk C: /f`), 4. Uninstall recent quality updates via DISM (`DISM /Image:C:\ /Get-Packages` and `/Remove-Package`).
12. Explain Event Viewer logs and critical event sources.
Centralized log diagnostic utility (`eventvwr.msc`). Core logs: **System** (OS/driver/service failures), **Application** (software crashes), **Security** (auth audits, login failures), and **Directory Service** (AD replication events). Critical IDs: `1000` (App Crash), `4625` (Failed Login), `7036` (Service State Change), `41` (Kernel Power Reboot).
13. What is Reliability Monitor and how do you access it?
A visual stability tracking tool (`perfmon /rel`) providing a daily system stability index score from 1 to 10. Plots application hangs, OS crashes, Windows Update installations, and driver updates over time to isolate exact failure initiation dates.
14. Explain Windows Services management via services.msc and CLI.
Services operate background system tasks without user interaction. Managed via `services.msc`. Startup types: **Automatic**, **Automatic (Delayed)**, **Manual**, **Disabled**. Managed via CLI using `net start/stop servicename` or PowerShell `Get-Service`, `Start-Service`, and `Set-Service -StartupType Automatic`.
15. How do you troubleshoot high CPU and Memory utilization on a server?
Open Task Manager or Resource Monitor (`resmon`). Identify process PIDs consuming memory/CPU. Use Process Explorer (`procexp`) to inspect process thread details and handles. If memory leak is suspected, use Performance Monitor (`perfmon.msc`) to log `Private Bytes` over time. Kill unresponsive non-critical threads or schedule service restarts.
16. Explain Disk Management features and volume expansion in Windows Server.
Managed via `diskmgmt.msc` or `diskpart`. Supports Basic and Dynamic disks, partition extensions, and drive letter mapping. To extend an NTFS volume: Ensure contiguous unallocated space exists on the physical disk → Right-click volume → Select **Extend Volume** (executed live without server downtime).
17. Difference between MBR and GPT partition styles.
  • MBR (Master Boot Record): Legacy partition style; supports max 2 TB drive capacity and max 4 primary partitions.
  • GPT (GUID Partition Table): Modern UEFI-backed style; supports drives >2 TB (up to 9.4 ZB) and up to 128 primary partitions with built-in CRC redundancy checks.
18. Explain NTFS permissions vs Share permissions and conflict resolution.
  • Share Permissions: Apply only when accessing files over the network (Read, Change, Full Control).
  • NTFS Permissions: Apply both locally and over the network (Read, Write, Modify, Full Control).
  • Conflict Resolution: When accessing files over a network share, Windows enforces the **Most Restrictive Permission** between Share vs NTFS permissions.
19. How do you troubleshoot disk space exhaustion on a C: system drive?
  1. Run Disk Cleanup (`cleanmgr.exe`).
  2. Purge Windows Update cache: `net stop wuauserv` & delete `C:\Windows\SoftwareDistribution`.
  3. Purge WinSxS store using DISM: `DISM /Online /Cleanup-Image /StartComponentCleanup /ResetBase`.
  4. Locate large log files using TreeSize or WinDirStat and review Pagefile/Hiberfil configurations.
20. Explain Performance Monitor (perfmon) Data Collector Sets and baseline tracking.
Accessed via `perfmon.msc`. System Admins configure **Data Collector Sets** to record continuous metrics over time to establish system baselines. Critical counters: `Processor(_Total)\% Processor Time`, `Memory\Available MBytes`, `PhysicalDisk(_Total)\Avg. Disk Queue Length`, and `System\Processor Queue Length`.
๐Ÿ”‘ Section 2: Active Directory & Group Policy (Questions 21โ€“40)
21. Explain Active Directory architecture (NTDS.dit, partitions, schema).
Active Directory stores domain objects inside a database file named `NTDS.dit` located in `C:\Windows\NTDS`. The database is logically partitioned into: 1. **Domain Partition** (Users, Computers, OUs), 2. **Configuration Partition** (Topology and AD Sites), 3. **Schema Partition** (Defines object classes and attributes), 4. **Application Partition** (AD-integrated DNS records).
22. What is a Domain Controller and what core services run on it?
A Windows Server running Active Directory Domain Services (AD DS). Executes authentication and authorization services for domain users and assets. Core running services: KDC (Kerberos Key Distribution Center), Netlogon, DNS Server, NTDS database service, and DFSR (SYSVOL sync).
23. Explain the 5 FSMO Roles in Active Directory.
  • Schema Master (Forest): Controls structure modifications to the AD database schema.
  • Domain Naming Master (Forest): Manages adding or removing domains in the forest.
  • PDC Emulator (Domain): Primary time source, handles Kerberos password changes and lockouts instantly.
  • RID Master (Domain): Allocates unique pools of Relative IDs to DCs for generating object SIDs.
  • Infrastructure Master (Domain): Translates cross-domain object references and GUIDs.
24. What is the Global Catalog (GC) server?
A Domain Controller configured to maintain a complete copy of its local domain objects plus a **partial read-only attribute set (PAS)** of all objects across all domains in the entire forest. Enables fast multi-domain searches and processes user logon UPN lookups.
25. Explain Active Directory Sites and Services and IP Subnet mapping.
Defines physical network topology in AD (`dssite.msc`). Subnets are linked to specific AD Sites. Ensures client computers authenticate against the geographically closest Domain Controller to optimize Kerberos authentication speeds and optimize inter-site DFSR replication schedules over WAN links.
26. Explain Active Directory integrated DNS zones and SRV records.
AD-Integrated DNS stores DNS zone data inside the AD database (`NTDS.dit`), automatically replicating DNS records across all DCs via AD replication. AD relies on DNS **SRV records** (located under `_msdcs` zone) to register LDAP (`389`), Kerberos (`88`), and Global Catalog (`3268`) locations.
27. What are Organizational Units (OUs) and how do they differ from Containers?
OUs (`dsa.msc`) are logical administrative containers used to organize users, computers, and groups. **OUs can have Group Policy Objects (GPOs) linked directly to them and support administrative delegation.** Default AD Containers (e.g., `CN=Users`, `CN=Computers`) *cannot* have GPOs linked directly to them.
28. Explain Group Policy (GPO) processing order (LSDOU).
Group Policies evaluate in sequential order: **1. Local Policy → 2. Site → 3. Domain → 4. Organizational Unit (OU)**. If settings conflict, the policy evaluated *last* wins, unless **Enforced** is enabled on a higher-level GPO or **Block Inheritance** is set on an OU.
29. How do you troubleshoot a Group Policy (GPO) that is not applying?
  1. Run `gpupdate /force` on client.
  2. Generate HTML result report: `gpresult /h C:\gpreport.html`.
  3. Inspect report for **Security Filtering** or **WMI Filter** blocks.
  4. Check if target OU has "Block Inheritance" enabled.
  5. Verify SYSVOL replication state across DCs using `repadmin /replsummary`.
30. Explain GPO Loopback Processing Mode (Replace vs Merge).
Used when user settings need to apply based on the *computer* location (e.g., Kiosks, Terminal Servers) rather than user OU.
  • Replace Mode: Completely overrides user's normal GPO settings with policies linked to the computer's OU.
  • Merge Mode: Combines user GPOs and computer GPOs; in case of conflict, computer GPO settings take precedence.
31. What are Active Directory Security Groups vs Distribution Groups?
  • Security Groups: Used to assign resource access permissions (file shares, printers, security rights) AND can be used as email distribution lists.
  • Distribution Groups: Used exclusively for email broadcast lists; cannot be used to assign resource access permissions.
32. Difference between Domain Local, Global, and Universal Group Scopes.
  • Domain Local: Granted permissions to resources located inside the *same* local domain; can contain members from any trusted domain.
  • Global: Organizes users sharing similar job roles from the *same* domain; can be granted access to resources across any trusted domain.
  • Universal: Can contain members from any domain in the forest and can be granted permissions to resources across any domain in the forest (replicated in Global Catalog).
33. Explain Domain Password Policies and Account Lockout Thresholds.
Configured by default inside the **Default Domain Policy** linked at the domain root. Defines Minimum Password Length (e.g., 12 chars), Complexity Requirements, Password History (e.g., remember 24 passwords), Maximum Password Age, Account Lockout Threshold (e.g., 5 failed attempts), and Lockout Duration.
34. Explain Fine-Grained Password Policies (FGPP) and Password Settings Objects (PSOs).
Allows applying distinct password complexity and lockout thresholds to specific users or Global Security Groups via Password Settings Objects (PSOs) stored in AD Administrative Center (`dsac.exe`), bypassing the single password policy limitation per domain.
35. How do you reset a user password and force password change on next logon?
Open Active Directory Users and Computers (`dsa.msc`) or ADAC (`dsac.exe`) → Locate user → Right-click → Select **Reset Password** → Enter new temporary password → Check **User must change password at next logon** → Click OK. Alternatively execute via PowerShell: `Set-ADAccountPassword` and `Set-ADUser -ChangePasswordAtLogon $true`.
36. How do you unlock a locked Active Directory user account?
In `dsa.msc`: Right-click user → **Properties** → Select **Account** tab → Check **Unlock Account. This account is currently locked out on this Active Directory Domain Controller** → Click Apply. Or run PowerShell: `Unlock-ADAccount -Identity "username"`.
37. How do you troubleshoot Active Directory replication issues between Domain Controllers?
Run `repadmin /replsummary` and `repadmin /showrepl` to locate failing replication partners and error status codes (e.g., Error 8606 / 8456). Run `dcdiag /v` to inspect domain controller health. Check network RPC port availability (`135` and `49152-65535`) between DCs and verify DNS lookup for DC GUID records.
38. Explain LDAP (389/636) and Kerberos (88) authentication mechanisms.
  • LDAP: Lightweight Directory Access Protocol queries AD database objects. Plain LDAP uses **Port 389**; encrypted LDAPS uses **Port 636**.
  • Kerberos: Default domain ticket-based authentication protocol operating on **Port 88** using mutual authentication via KDC service.
39. Compare NTLM vs Kerberos authentication protocols.
  • NTLM: Legacy challenge-response protocol using MD4 password hashes; slower, lacks mutual authentication, vulnerable to relay and Pass-the-Hash attacks.
  • Kerberos: Fast, ticket-based authentication using strong encryption, enforces mutual authentication, relies on trusted KDC and DNS.
40. How do you troubleshoot domain user login failures?
  1. Inspect Windows Security Log on DC for **Event ID 4625** (Failed Logon) and review status error codes.
  2. Verify if account is disabled or locked out (`Event ID 4740`).
  3. Check system time synchronization between client and DC (Kerberos fails if time skew >5 mins).
  4. Test workstation secure channel trust relationship using PowerShell: `Test-ComputerSecureChannel`.
๐ŸŒ Section 3: DNS, DHCP & Networking (Questions 41โ€“55)
41. Explain DNS architecture, recursive lookups, and root hints.
DNS resolves human-readable domain names into IP addresses. When a client queries DNS, the server searches its local cache/zone files. If unfulfilled, the recursive resolver queries **Root Hints Servers** (`.`) → **TLD Servers** (`.com`) → **Authoritative DNS Servers** for the target domain to return the IP address.
42. Explain Forward Lookup Zones vs Reverse Lookup Zones.
  • Forward Lookup Zone: Maps domain hostnames to IP addresses (e.g., `server.domain.com` → `10.0.0.50`).
  • Reverse Lookup Zone: Maps IP addresses to domain hostnames (e.g., `10.0.0.50` → `server.domain.com`) using Pointer (PTR) records.
43. What are A, AAAA, CNAME, MX, PTR, and TXT DNS records?
  • A Record: Maps hostname to IPv4 address.
  • AAAA Record: Maps hostname to IPv6 address.
  • CNAME: Alias mapping one domain name to another domain name.
  • MX Record: Points to destination mail exchange servers.
  • PTR Record: Maps IP address to hostname for reverse lookups.
  • TXT Record: Holds text data (used for SPF, DKIM, DMARC domain verification).
44. Explain DHCP DORA lease process.
DHCP leases dynamic IP parameters via 4-step sequence:
  1. Discover: Client broadcasts request on LAN (UDP Port 67).
  2. Offer: DHCP server offers available IP address parameters (UDP Port 68).
  3. Request: Client requests offered IP address.
  4. Acknowledge: Server acknowledges lease assignment to client.
45. What is a DHCP Reservation and when is it used?
A configuration inside a DHCP scope that binds a specific static IP address to a client's unique physical MAC address. Ensures target devices (e.g., network printers, servers, management consoles) always receive the exact same IP address dynamically without configuring static IPs locally.
46. Explain DHCP Failover modes (Hot Standby vs Load Balance).
High availability feature in Windows Server DHCP.
  • Hot Standby: Primary server processes 100% of IP leases; secondary server steps in automatically if primary fails.
  • Load Balance: Both DHCP servers process client IP requests simultaneously based on a configured percentage split (default 50/50).
47. Explain TCP/IP stack layers and standard subnetting concepts.
4-layer model: Application, Transport (TCP/UDP), Internet (IP), Network Interface. **Subnetting** uses Subnet Masks (e.g., `255.255.255.0` = `/24`) to divide an IP address into Network ID and Host ID portions, segregating large networks into smaller broadcast domains.
48. What is a VLAN and why is it used?
Virtual Local Area Network logically segments a physical network switch into separate broadcast domains at Layer 2. Enhances network security, traffic control, and management by isolating departments (e.g., Server VLAN, User VLAN, Guest VLAN).
49. What is a Default Gateway?
The Layer 3 router interface IP address configured on a local network host that forwards packets destined for external subnets or public Internet destinations outside the local LAN.
50. Explain NAT (Network Address Translation) and PAT.
NAT rewrites IP headers. **Source NAT (SNAT)** translates internal private IP addresses (RFC 1918) into a single public IP address at the firewall gateway to enable internet browsing. **PAT (Port Address Translation)** maps multiple internal private IPs to a single public IP using distinct ephemeral port numbers.
51. Explain VPN types and protocols (IPsec vs SSL/TLS).
Creates an encrypted tunnel across public networks. **IPsec VPN** operates at Layer 3 (Network Layer) providing site-to-site or full-tunnel endpoint connectivity. **SSL/TLS VPN** operates at Layer 7 (Application Layer), providing secure web browser access or remote access client connectivity.
52. Explain Windows Defender Firewall rules and connection security rules.
Host-based firewall evaluating rules top-down. **Inbound/Outbound Rules** permit or block traffic based on IP, port, or program path. **Connection Security Rules** enforce IPsec authentication and encryption between domain hosts before data transmission occurs.
53. How do you troubleshoot DNS resolution issues on Windows Server?
  1. Check local hosts file (`C:\Windows\System32\drivers\etc\hosts`).
  2. Flush DNS cache: `ipconfig /flushdns`.
  3. Use `nslookup` or PowerShell `Resolve-DnsName` to test resolution against specific DNS servers.
  4. Clear DNS Server cache via DNS Manager (`dnsmgmt.msc`) or `dnscmd /clearcache`.
  5. Restart DNS Server service (`net stop dns && net start dns`).
54. How do you troubleshoot DHCP scope exhaustion or allocation failures?
Open `dhcpmgmt.msc` → Check scope lease statistics. If 100% full: 1. Reduce scope Lease Duration time for high-density networks, 2. Clear active stale leases, 3. Expand scope range or adjust CIDR subnet mask, 4. Verify IP Helper / DHCP Relay Agent configurations on network switches.
55. How do you troubleshoot end-to-end network connectivity failures?
  1. Check physical NIC link light and verify IP configuration via `ipconfig /all` (check for APIPA `169.254.x.x`).
  2. Ping local loopback (`127.0.0.1`), local IP, Default Gateway, and remote public IP (`8.8.8.8`).
  3. Test DNS resolution: `nslookup google.com`.
  4. Trace network hops: `tracert destination`.
  5. Test specific port connectivity using PowerShell: `Test-NetConnection -ComputerName "Server" -Port 445`.
โšก Section 4: Virtualization (Hyper-V & VMware) (Questions 56โ€“65)
56. What is Hyper-V and Type-1 Hypervisor architecture?
Microsoft's bare-metal **Type-1 Hypervisor** installing directly on physical hardware underneath the OS layer. The host OS runs inside a privileged Management Partition (Parent Partition), running guest Virtual Machines inside child partitions with hardware virtualized directly by the hypervisor layer.
57. Explain VMware ESXi and vCenter Server architecture.
**VMware ESXi** is a bare-metal Type-1 hypervisor footprint installed directly on server hardware. **vCenter Server** is a centralized management platform that aggregates multiple ESXi hypervisor hosts into clusters, providing centralized administration, vMotion, vHA, and DRS cluster management.
58. What are Virtual Machines (VMs) and dynamic memory allocation?
Software emulation of physical computers executing guest operating systems. **Dynamic Memory** in Hyper-V dynamically adjusts the amount of RAM assigned to a running VM based on real-time workload demands within defined Minimum and Maximum RAM boundaries.
59. What are VM Snapshots / Checkpoints and why should they NOT be used as backups?
Point-in-time state records of a VM disk and memory (`.avhdx` files). **Snapshots are NOT backups** because delta files grow dynamically, consuming host storage, degrading disk I/O performance, and leaving single points of failure if primary virtual disk files corrupt.
60. Difference between Generation 1 and Generation 2 Virtual Machines in Hyper-V.
  • Generation 1: Supports legacy 32/64-bit OS, emulates legacy BIOS, IDE controllers, and synthetic drivers.
  • Generation 2: Modern 64-bit OS support, UEFI boot, Secure Boot, PXE boot over standard NIC, SCSI virtual controllers, and faster boot performance.
61. Explain Hyper-V Virtual Switch types (External, Internal, Private).
  • External: Binds to a physical host NIC, allowing VMs to communicate with each other, the host OS, and the physical external network.
  • Internal: Allows communication between VMs and the host OS only (no physical network access).
  • Private: Allows communication *only* between VMs connected to the same switch (no host OS or physical network access).
62. How do you migrate Virtual Machines between hypervisor hosts?
Execute **Live Migration** (Hyper-V) or **vMotion** (VMware) to move running VMs between physical hosts with zero application downtime over dedicated high-speed network interfaces. For cold migration, shut down VM, export/move VHDX/VMDK files, and import on target host.
63. Explain High Availability (HA) in virtualized cluster environments.
Clusters physical hypervisor hosts together using **Windows Failover Clustering** or **VMware HA** bound to shared storage (SAN/NAS/S2D). If a physical host server experiences a hardware failure, hypervisor HA automatically restarts affected VMs on remaining healthy cluster nodes.
64. Explain Hyper-V Live Migration and CredSSP / Kerberos authentication requirements.
Transfers running VM RAM state and storage to another host with zero downtime. Requires Kerberos constrained delegation configured in Active Directory or CredSSP authentication, consistent virtual switch names across hosts, and dedicated Live Migration network links.
65. How do you troubleshoot VM performance issues (CPU, Memory, Storage I/O)?
Inspect hypervisor host resource allocation. Check for CPU overcommitment ratio, verify RAM dynamic allocation limits, check storage latency on SAN/S2D, inspect VM integration services status, and run `perfmon` inside the guest OS to isolate thread locks or disk queue congestion.
โ˜๏ธ Section 5: Microsoft 365 & Identity (Questions 66โ€“75)
66. Explain Microsoft 365 administration and hybrid tenant integration.
Administering enterprise cloud services via M365 Admin Center and Entra ID portal. Hybrid integration bridges on-premises Active Directory with M365 cloud workloads using Entra Connect Sync, enabling single identity management across on-prem and cloud apps.
67. What is Microsoft Entra ID (Azure AD) and how does it differ from On-Prem AD?
Cloud-based Identity and Access Management (IAM) service. Unlike on-prem AD (hierarchical, Kerberos/NTLM, LDAP, GPO), Entra ID is a flat web-scale directory using modern OAuth 2.0, OpenID Connect, and SAML protocols over HTTPS APIs.
68. Explain Azure AD Connect (Entra Connect) sync architecture.
An on-premises server agent reading object modifications from Active Directory Domain Services via LDAP and syncing identity objects (Users, Groups, Contacts) to Microsoft Entra ID over HTTPS Graph APIs on a default 30-minute interval.
69. Explain Hybrid Identity models (Password Hash Sync vs Pass-Through Auth).
  • Password Hash Sync (PHS): Syncs re-hashed user password hashes from on-prem AD to Entra ID; simplest, most resilient cloud identity mode.
  • Pass-Through Auth (PTA): On-premises agent validates cloud user login attempts against local DCs in real time over outbound HTTPS connection.
70. Explain Exchange Online administration and hybrid mail routing.
Cloud email service. Hybrid deployment uses Exchange Hybrid Agent or connectors to route mail between on-premises Exchange and Exchange Online using a unified domain space, global address list (GAL), and free/busy calendar sharing.
71. What is an Exchange Shared Mailbox and what are its licensing rules?
A mailbox accessible by multiple delegates. Free up to 50 GB storage without requiring a paid M365 license. The associated Entra ID user account remains **disabled** for direct interactive logon, requiring delegates to access contents using Full Access and Send As permissions.
72. Explain Microsoft Teams administration and M365 Group backend links.
Administered via Teams Admin Center (TAC). Every Microsoft Team is backed by a Microsoft 365 Group: Team conversations process via Substrate/Exchange, Team channel files store in a connected SharePoint Online site document library, and 1-on-1 chat files store in user OneDrive accounts.
73. Explain Multi-Factor Authentication (MFA) enforcement in M365.
Requires secondary proof of identity during sign-in. Enforced via Entra ID Conditional Access policies or Security Defaults. Methods include Microsoft Authenticator app with **Number Matching**, FIDO2 security keys, and OOB phone verification.
74. Explain Conditional Access Policies in Microsoft Entra ID.
Zero Trust evaluation engine ("If-Then" rules). Evaluates access signals (**User Group**, **IP Location**, **Device Compliance State**, **App Sensitivity**) → Enforces access controls (**Require MFA**, **Require Compliant Device**, **Block Access**).
75. How do you troubleshoot Microsoft 365 login failures for hybrid users?
  1. Inspect Entra ID Sign-in logs for specific status error codes.
  2. Verify Entra Connect Sync status in `miisclient.exe` on-prem.
  3. Check if user account is locked out or password expired in on-premises AD.
  4. Test web access via browser Incognito mode to clear local credential token cache.
๐Ÿ’พ Section 6: Backup, Storage & Security (Questions 76โ€“90)
76. Explain Windows Server Backup feature capabilities and VSS.
Native backup feature (`wbadmin`) supporting full volume, system state, and bare-metal recovery (BMR). Relies on **Volume Shadow Copy Service (VSS)** to create consistent point-in-time snapshot copies of open files and active databases (e.g., `NTDS.dit`, Hyper-V VHDX) without interrupting applications.
77. Explain Backup Strategies (Full, Incremental, Differential) and 3-2-1 Rule.
  • Full: Backs up all selected data; resets archive bit.
  • Incremental: Backs up only data changed since the last backup (fastest backup, slowest restore).
  • Differential: Backs up all data changed since the last *Full* backup (larger sizes, faster restore).
  • 3-2-1 Rule: Maintain **3** total data copies, across **2** different media types, with **1** copy off-site or air-gapped.
78. Explain Disaster Recovery (DR) metrics: RTO and RPO.
  • RTO (Recovery Time Objective): The maximum acceptable duration of system downtime to restore operations post-outage.
  • RPO (Recovery Point Objective): The maximum acceptable age of unrecovered data/backups lost during an outage.
79. Explain RAID Levels (RAID 0, 1, 5, 6, 10) hardware configurations.
  • RAID 0: Striping (high performance, zero fault tolerance).
  • RAID 1: Mirroring (requires 2 disks, 1-disk fault tolerance).
  • RAID 5: Striping with distributed parity (requires min 3 disks, 1-disk fault tolerance).
  • RAID 6: Striping with double parity (requires min 4 disks, 2-disk fault tolerance).
  • RAID 10: Mirrored sets striped together (requires min 4 disks, high speed & fault tolerance).
80. Explain Storage Spaces and Storage Spaces Direct (S2D) in Windows Server.
Storage virtualization features. **Storage Spaces** pools physical drives into virtual storage pools supporting Mirror and Parity resiliency. **Storage Spaces Direct (S2D)** pools local storage attached across physical hypervisor cluster nodes into a software-defined, highly available virtual SAN over SMB Direct (RDMA).
81. Explain BitLocker Drive Encryption and Network Unlock.
Enforces full-disk volume encryption using AES 128/256-bit keys bound to motherboard TPM 2.0 hardware. **Network Unlock** allows domain-joined servers connected to trusted corporate wired networks to automatically unlock BitLocker volumes during boot without requiring PIN entry by querying a WDS key server.
82. Explain Microsoft Defender for Server deployment and onboarding.
Provides real-time Next-Gen Antivirus and Endpoint Detection and Response (EDR) for Windows Server. Onboarded to Defender for Endpoint portal via Intune, MECM, or onboarding script packages (`WindowsDefenderATP.onboarding`).
83. Explain Patch Management workflows for Windows Server environments.
Systematic patching cycle: 1. **Audit & Synchronize** patches, 2. **Approve** updates into maintenance rings, 3. **Deploy** via WSUS/MECM or Azure Auto-patch during maintenance windows, 4. **Validate** server reboots and service health status post-patching.
84. Explain Windows Server Update Services (WSUS) architecture.
Centralized update management role. WSUS server downloads update metadata and binaries from Microsoft Update, caches patches locally, and distributes approved patches to internal servers and client computers based on GPO targeting rules (`Specify intranet Microsoft update service location`).
85. Explain Antivirus vs EDR on Windows Server infrastructure.
  • Antivirus: Signature-based pre-execution protection blocking known malware files.
  • EDR (Endpoint Detection and Response): Continuous behavioral telemetry logging process execution chains, script execution, and memory behavior to detect zero-days and support remote host isolation.
86. How do you configure File Server permissions and Access-Based Enumeration (ABE)?
Configure NTFS permissions using Security Groups following AGDLP model. Enable **Access-Based Enumeration (ABE)** on SMB shares: Displays only the files and folders a user has explicit read permissions to access, hiding all unauthorized directories completely.
87. Explain SMB Shares management and SMB 3.1.1 security hardening.
Managed via `fsmgmt.msc` or PowerShell (`New-SmbShare`). Secure SMB 3.1.1 by enforcing **SMB Encryption** (`Set-SmbServerConfiguration -EncryptData $true`), disabling legacy **SMBv1** completely, and disabling NTLM fallbacks.
88. Explain Shadow Copies for Shared Volumes (VSS) for file recovery.
Configured on file server storage volumes. Automatically captures differential point-in-time snapshots of file changes on a scheduled interval (e.g., twice daily). Allows end users to self-restore previous versions of modified or deleted files via File Explorer **Previous Versions** tab without IT intervention.
89. Explain Least Privilege Access model in server administration.
Restricts administrative access strictly to required operational boundaries. Enforces separate non-privileged accounts for daily tasks, uses dedicated Domain Admin accounts strictly on DCs, deploys Windows LAPS for local admin accounts, and utilizes PIM/PAM for temporary elevation.
90. Explain Windows Server Hardening baseline checklist (CIS Benchmarks).
  1. Apply CIS Server Hardening GPOs.
  2. Disable legacy protocols (SMBv1, NetBIOS, LLMNR).
  3. Enable BitLocker encryption and UAC at maximum level.
  4. Configure Windows Defender Firewall default block rules.
  5. Disable unnecessary server roles and default services.
  6. Enforce LAPS for local administrator account management.
โšก Section 7: PowerShell & IT Operations (Questions 91โ€“100)
91. Why is PowerShell critical for Windows System Administrators?
PowerShell is an object-oriented task automation and configuration management framework. Unlike text-based shells, PowerShell passes structured .NET objects pipeline-to-pipeline, allowing SysAdmins to automate repetitive tasks, manage Server Core without GUI, and administer M365 cloud workloads at scale.
92. How do you automate Active Directory user creation using PowerShell?
Construct script reading user details from a CSV file (`Import-Csv`) and piping attributes to `New-ADUser`:
Import-Csv "C:\NewUsers.csv" | ForEach-Object {
    New-ADUser -Name $_.Name -GivenName $_.FirstName -Surname $_.LastName `
               -UserPrincipalName $_.UPN -Path $_.OU -AccountPassword (ConvertTo-SecureString $_.Password -AsPlainText -Force) `
               -Enabled $true -ChangePasswordAtLogon $true
}
93. Explain PowerShell Remoting (WinRM) and PSRemoting commands.
Executes commands on remote hosts over HTTP (Port 5985) or HTTPS (Port 5986) using WS-Management. Enable via `Enable-PSRemoting`. Run interactive remote sessions via `Enter-PSSession -ComputerName "Server01"` or run script blocks across multiple servers simultaneously using `Invoke-Command -ComputerName S1,S2 -ScriptBlock {...}`.
94. How do you automate task execution using Windows Task Scheduler?
Open `taskschd.msc` → Create Task. Define **Triggers** (e.g., daily at 2:00 AM), set **Action** to `powershell.exe` with Arguments `-ExecutionPolicy Bypass -File "C:\Scripts\Backup.ps1"`, and configure security options to "Run whether user is logged on or not" using a dedicated service account.
95. How do you identify administrative tasks suitable for automation?
Analyze operational workloads for tasks that are repetitive, high-volume, error-prone when executed manually, or time-sensitive. Examples: Active Directory user onboarding/offboarding, weekly disk cleanup, monthly server patch reboot verification, and daily backup health checks.
96. Explain Performance Monitor counters for server bottleneck detection.
Monitor key counters: 1. **CPU:** `Processor(_Total)\% Processor Time` (>85% indicates bottleneck), 2. **Memory:** `Memory\Available MBytes` (<10% indicates exhaustion), 3. **Disk:** `PhysicalDisk(_Total)\Avg. Disk sec/Read` (>20ms indicates disk latency), 4. **Network:** `Network Interface(*)\Bytes Total/sec`.
97. How do you schedule and execute automated maintenance tasks via PowerShell?
Write modular PowerShell scripts containing error handling (`try/catch`), log output to a central file (`Out-File -Append`), and register the task via PowerShell using `Register-ScheduledTask` to run automatically under a managed service account context.
98. How do you generate automated Daily Server Health Reports using PowerShell?
Develop a scheduled PowerShell script querying environment metrics:
$Services = Get-Service | Where-Object {$_.StartType -eq 'Automatic' -and $_.Status -ne 'Running'}
$Disks = Get-CimInstance Win32_LogicalDisk | Where-Object {$_.DriveType -eq 3 -and ($_.FreeSpace/$_.Size) -lt 0.15}
$Events = Get-WinEvent -FilterHashtable @{LogName='System'; Level=1,2; StartTime=(Get-Date).AddHours(-24)}
# Format results into HTML string and send via Send-MailMessage
99. What operational KPIs do you monitor as a Windows System Administrator?
  • Server Uptime % (Target >99.9%).
  • Patch Compliance Rate % (Target >95% within 14 days of Patch Tuesday).
  • Mean Time to Resolve (MTTR) for infrastructure tickets.
  • Backup Success Rate % (Target 100%).
  • Active Directory Replication Health & DNS Resolution Speed.
100. What would be your top priorities during your first 30 days as System Administrator?
  1. Audit Active Directory environment, FSMO roles, and Domain Controller health (`dcdiag`).
  2. Review backup restoration status and test DR recovery workflows.
  3. Audit WSUS patch compliance and critical vulnerability exposure across servers.
  4. Inspect Active Directory Domain Administrator group memberships and check Windows LAPS adoption.
  5. Review system documentation, topology diagrams, and existing operational SOPs.
Chapter 2: Scenario-Based Questions (10 Scenarios)
Scenario 1: Users suddenly cannot log in to the domain across multiple offices. How would you troubleshoot the issue?
  1. Test Authentication Scope: Verify if users can log in using cached credentials on existing workstations. Test logging in with a test domain account from multiple subnets.
  2. Check DC & DNS Health: Verify physical/virtual DC power status. Ping DC static IPs and test DNS resolution for domain SRV records (`_msdcs.domain.com`).
  3. Check Kerberos & Time Synchronization: Run `w32tm /query /status` on client devices to check time skew against PDC Emulator (Kerberos fails if skew >5 mins).
  4. Verify AD Services: Connect to DCs and verify `NTDS`, `KDC`, `DNS`, and `Netlogon` services are running.
  5. Check Network Firewalls: Verify RPC and Kerberos ports (`88`, `389`, `135`, `49152-65535`) are unblocked across network subnets.
Scenario 2: A primary Domain Controller goes offline following a server room power failure. What steps would you take to restore services?
  1. Verify Secondary DC Failover: Confirm secondary DC handles domain authentication and DNS queries seamlessly.
  2. Attempt Hardware/Host Recovery: Inspect physical host power, repair file system errors in WinRE if needed, and boot DC into Directory Services Restore Mode (DSRM) to run `ntdsutil` database integrity checks.
  3. Seize FSMO Roles (If Unrecoverable): If the failed DC held FSMO roles and cannot be recovered, open PowerShell on the surviving DC and execute `Seize-ADDirectoryServerRole` to forcibly claim FSMO roles.
  4. Metadata Cleanup: Clean up dead DC records from Active Directory using `ntdsutil` or `dsa.msc` (deleting computer object) and remove stale DNS records.
  5. Re-promote / Rebuild: Provision a clean Windows Server installation and promote it as a fresh secondary DC.
Scenario 3: A Group Policy was deployed, accidentally locking users out of Control Panel and critical applications. How would you investigate and resolve the issue?
  1. Unlink/Disable GPO: Open Group Policy Management Console (`gpmc.msc`), identify newly linked GPO, right-click and uncheck **Link Enabled** or delete the link from the targeted OU.
  2. Force Immediate Refresh: Execute an emergency forced policy refresh command (`gpupdate /force`) across domain hosts via PowerShell `Invoke-Command` or MECM/Intune.
  3. Identify Misconfiguration: Review GPO change history. Identify syntax errors in User Configuration policies (e.g., Software Restriction Policies or AppLocker misconfigurations).
  4. Enforce Governance: Require all future GPO edits to undergo development in a dedicated Staging OU, undergo peer review, and receive formal CAB approval before production linking.
Scenario 4: The primary DHCP scope has reached 100% utilization, preventing new users from obtaining IP addresses. How would you resolve the issue?
  1. Immediate Workaround: Open `dhcpmgmt.msc` → Reclaim inactive IP leases by clearing expired active leases or shortening scope Lease Duration (e.g., reduce from 8 days to 8 hours for wireless subnets).
  2. Expand Scope Pool: Expand the active scope IP range if unallocated IPs exist in the subnet prefix.
  3. Add Superscope / Subnet: If the subnet is exhausted, configure a **Superscope** in DHCP Manager to add a secondary IP network block to the physical segment.
  4. Configure DHCP Failover: Set up a secondary DHCP server in Load Balance mode to ensure continuous IP availability.
Scenario 5: A critical corporate file server is running out of disk space (99% full), impacting business operations. What steps would you take to identify the cause and restore service?
  1. Immediate Cleanup: Run Disk Cleanup (`cleanmgr`), purge Windows temp files, and clear old IIS/application log files under `C:\inetpub\logs`.
  2. Locate Large Files: Run TreeSize or PowerShell script to scan the volume and identify top large directories or runaway log files.
  3. Shadow Copy / VSS Purge: Inspect VSS shadow copy storage limits (`vssadmin list shadowstorage`) and resize allocated space if shadow copies consume excess storage.
  4. Expand Virtual Disk: If running on a VM, extend the virtual disk (VHDX/VMDK) in Hyper-V/VMware console, then extend the volume live inside Disk Management (`diskmgmt.msc`).
  5. Configure Storage Sense: Deploy Storage Sense policies via GPO to automatically purge temporary files routinely.
Scenario 6: After installing monthly Windows Server updates, a critical line-of-business application no longer starts. How would you troubleshoot and recover the service?
  1. Inspect Error Logs: Open Event Viewer → Check Application Log for Event ID 1000/1002 to identify failing DLL dependencies or service crash details.
  2. Service Dependencies Check: Check `services.msc` to ensure all parent dependent services are running.
  3. Uninstall Recent Update: Open CMD as Admin → Execute `wusa /uninstall /kb:KB1234567 /quiet /norestart` or roll back patch via WSUS/MECM deployment console.
  4. Test Application: Restart server and verify application service starts successfully.
  5. Vendor & Patch Management Escalation: Log issue with software vendor, hide/defer specific KB update in WSUS, and test update patch in staging environment prior to re-deployment.
Scenario 7: Microsoft 365 users cannot sign in after password synchronization fails between on-premises AD and Azure AD Connect. How would you investigate and restore synchronization?
  1. Check Sync Server Status: Log onto Entra Connect server and verify the `Microsoft Azure AD Sync` service is running.
  2. Inspect Synchronization Service Manager: Launch `miisclient.exe` → Review **Operations** tab for failed sync cycles and export error strings (e.g., `credentials-expired` or `stopped-server-down`).
  3. Verify Connector Account: Confirm the AD DS service account credentials are valid and not locked out.
  4. Test Password Writeback: Check if Password Hash Sync (PHS) or Password Writeback feature is flagged with errors in Event Viewer under `Azure AD Connect` log.
  5. Manual Sync Trigger: Execute manual delta synchronization via PowerShell: `Start-ADSyncSyncCycle -PolicyType Delta`.
Scenario 8: A virtual machine hosting a core application experiences severe performance degradation. How would you determine whether the bottleneck is storage, memory, CPU, or the guest OS?
  1. Check Hypervisor Host Metrics: Review host resource utilization in Hyper-V / vCenter. Check if physical host CPU/RAM is overcommitted.
  2. Check Storage Latency: Inspect disk I/O metrics on SAN/S2D volume. Disk queue length >2 or latency >20ms indicates storage bottleneck.
  3. Check Guest OS Metrics: Log into VM → Open Resource Monitor (`resmon`) and Performance Monitor (`perfmon`).
  4. Isolate Component:
    • High `Processor Queue Length` → CPU starvation (assign more virtual vCPUs).
    • High `Page Faults/sec` & Dynamic Memory maxed out → Memory exhaustion (increase RAM limit).
    • High `Avg. Disk sec/Transfer` → Storage I/O bottleneck (move VHDX to SSD storage pool).
Scenario 9: Management asks you to migrate 200 users from an old Windows 2012 file server to a new Windows Server 2022 server with zero business disruption. Describe your strategy.
  1. Tooling & Preparation: Utilize **Windows Storage Migration Service** in Windows Admin Center or Microsoft `Robocopy`.
  2. Initial Seed Copy: Run initial Robocopy pass during business hours to seed raw data: `robocopy \\OldServer\Share \\NewServer\Share /MIR /COPYALL /MT:16 /LOG:C:\CopyLog.txt`.
  3. User Communication: Send change notice informing users of scheduled cutover maintenance window.
  4. Delta Copy & Cutover: During maintenance window, set old shares to Read-Only, execute final Robocopy delta sync pass (`/MIR` to catch changes), and update DNS CNAME / DFS Namespace paths to point seamlessly to the new server IP.
  5. Validation: Confirm file share accessibility, verify NTFS permissions match original source, and commission old server after 30-day soak period.
Scenario 10: A ransomware attack encrypts files on a Windows File Server share. Explain your immediate response, containment strategy, recovery process, and lessons learned.
  1. Immediate Host Isolation: Disconnect physical network cable from file server or execute network isolation via EDR console immediately.
  2. Identify Patient Zero: Open `fsmgmt.msc` on file server → Inspect **Open Files** and **Sessions** to identify the specific user workstation account executing rapid file encryption across shares. Isolate that user's desktop immediately.
  3. Revoke Credentials: Disable the compromised user account in Active Directory and reset session tokens.
  4. Eradication & Recovery: Wipe infected endpoint. Restore encrypted file server shares from uninfected VSS Shadow Copies (`Previous Versions`) or immutable off-site backups.
  5. Post-Mortem: Deploy File Server Resource Manager (FSRM) anti-ransomware file blocking rules (blocking `.locked`, `.crypto` extensions) and strengthen EDR behavioral blocking.
Chapter 3: Interactive Knowledge Assessment Quiz (25 Questions)

Complete the 25 Windows System Administrator assessment questions below. Enter your full name and submit to calculate your score, view detailed explanations, and receive your official technical evaluation badge from Bora Academy.

1. What special boot mode is used on Domain Controllers to perform offline maintenance on the NTDS.dit database?

Correct Answer: B
Explanation: DSRM boots a Domain Controller offline without starting AD DS services, allowing administrative database repair using `ntdsutil`.

2. Which FSMO role acts as the primary time source and processes Kerberos password changes immediately across the domain?

Correct Answer: A
Explanation: The Primary Domain Controller (PDC) Emulator synchronizes domain time and handles immediate password updates/lockouts.

3. What is the evaluation order of Group Policy processing in Active Directory?

Correct Answer: D
Explanation: Group Policy processes in LSDOU order: Local Policy, Site, Domain, then Organizational Unit.

4. Which tool provides a day-by-day graphical stability index score (1โ€“10) plotting crashes, updates, and driver failures?

Correct Answer: C
Explanation: Reliability Monitor (`perfmon /rel`) visualizes operational stability and tracks daily system event failures.

5. What DISM command repairs the Windows Component Store (WinSxS) using online Windows Update sources?

Correct Answer: B
Explanation: DISM `/RestoreHealth` repairs corrupted system image binaries in WinSxS using Windows Update.

6. What DNS record type resolves IP addresses to human-readable domain hostnames for reverse lookups?

Correct Answer: A
Explanation: Pointer (PTR) records in Reverse Lookup Zones map IP addresses back to domain hostnames.

7. Which feature in File Server Resource Manager hides files and folders from users who lack explicit read permissions?

Correct Answer: D
Explanation: Access-Based Enumeration hides unpermitted files/folders from user directory listings automatically.

8. What tool automatically rotates unique, complex local administrator passwords across domain computers?

Correct Answer: C
Explanation: Windows LAPS automatically manages and securely stores unique local admin passwords in AD / Entra ID.

9. What ports are used by default for plain HTTP and encrypted HTTPS PowerShell Remoting (WinRM)?

Correct Answer: B
Explanation: WinRM uses TCP Port 5985 for HTTP and TCP Port 5986 for HTTPS communication.

10. What RAID level uses disk striping with distributed parity across a minimum of 3 physical drives?

Correct Answer: A
Explanation: RAID 5 requires at least 3 disks and distributes parity data across all member drives for 1-disk fault tolerance.

11. What Hyper-V virtual switch type allows VM communication strictly between connected VMs, blocking access to the host OS and external network?

Correct Answer: D
Explanation: Private Virtual Switches isolate VM traffic entirely, preventing communication with the parent host OS or external network.

12. Where is the active physical Active Directory database file (NTDS.dit) stored by default?

Correct Answer: C
Explanation: The main Active Directory ESE database `NTDS.dit` resides in `C:\Windows\NTDS`.

13. What native service enables point-in-time snapshot copies of open files and active databases during backups?

Correct Answer: B
Explanation: VSS creates consistent shadow copies of volume data while applications write to disk.

14. What command generates a detailed HTML Group Policy application report for an endpoint?

Correct Answer: A
Explanation: `gpresult /h` generates an HTML diagnostic report detailing applied and denied GPOs.

15. Which FSMO role handles adding or removing domains from an Active Directory forest?

Correct Answer: D
Explanation: The Domain Naming Master manages the addition or removal of domains within the forest tree structure.

16. What PowerShell cmdlet tests TCP port connectivity to a remote server target?

Correct Answer: B
Explanation: `Test-NetConnection` evaluates IP routing and verifies target TCP port openness.

17. What type of backup backs up all files modified since the last FULL backup without resetting the archive bit?

Correct Answer: C
Explanation: Differential backups capture all cumulative changes made since the last Full backup without clearing file archive bits.

18. What component stores Group Policy Object templates (GPT) replicated across DCs via DFSR?

Correct Answer: A
Explanation: SYSVOL is a domain-wide share on DCs storing Group Policy templates and login scripts.

19. Which BitLocker capability allows domain-joined servers to unlock encrypted volumes automatically over the wired network during boot?

Correct Answer: D
Explanation: Network Unlock uses a WDS key server over trusted wired domain networks to bypass boot PIN prompts automatically.

20. What tool scans on-premises Active Directory for syntax and attribute errors prior to running Azure AD Connect sync?

Correct Answer: B
Explanation: `IdFix.exe` scans AD objects for duplicate attributes and invalid characters before initiating cloud sync.

21. What metric represents the maximum acceptable age of unrecovered data/backups lost during an outage?

Correct Answer: C
Explanation: RPO defines the maximum allowable data loss window measured in time.

22. What command forces a manual delta synchronization cycle in Azure AD Connect?

Correct Answer: A
Explanation: `Start-ADSyncSyncCycle -PolicyType Delta` initiates an immediate incremental sync pass to Entra ID.

23. What permission rule resolves access when a user accesses a network share governed by both Share and NTFS permissions?

Correct Answer: D
Explanation: Windows enforces the most restrictive setting when combining network Share permissions and local NTFS permissions.

24. What Generation setting in Hyper-V supports UEFI boot, Secure Boot, and SCSI virtual controllers?

Correct Answer: B
Explanation: Generation 2 VMs provide UEFI, Secure Boot, PXE boot, and SCSI virtual interfaces for modern 64-bit OSs.

25. What command-line tool executes automated system file checks and replaces corrupted system binaries from local cache?

Correct Answer: A
Explanation: `sfc /scannow` (System File Checker) inspects protected OS files and replaces corrupt files with clean cached copies.

Explore More Free Guides โ€” Bora Academy

๐ŸŽฏ
Cyber Security Interview Guide (0โ€“2 Yrs)
Entry-level cyber security interview prep
๐ŸŽฏ
Cyber Security Engineer (3โ€“8 Yrs)
Mid-senior cyber security engineer prep
๐Ÿ–ฑ๏ธ
Desktop Support Engineer (3โ€“5 Yrs)
Desktop support interview mastery
๐Ÿ–ฑ๏ธ
Desktop Support Engineer (L3)
L3 escalation-level support interview prep
โ† Back to All Guides (Bora Academy Home)