All questions
of 50What is the difference between a workgroup and a domain?
Answer it yourself first - out loud, or typed below.
How should your speech become text?
Listening… your words appear above as you speak - tap Stop when you're done.
Recording · cr - tap Stop & transcribe when you're done.
Transcribing with AI…
Voice:
Last attempt -
A workgroup is a peer-to-peer network where each computer manages its own security and user accounts locally. There's no centralized authentication, and each machine maintains its own user database. Workgroups are suitable for small networks (typically under 20 computers).
A domain is a centralized network where a domain controller manages authentication, security policies, and user accounts. All computers in the domain trust the domain controller for authentication. Domains provide centralized management, better security, and scalability for larger organizations.
Key differences:
- Authentication: Workgroup uses local accounts; Domain uses centralized authentication
- Management: Workgroup requires individual computer management; Domain allows centralized management
- Security: Domain provides better security through centralized policies
- Scalability: Workgroups are limited to small networks; Domains can scale to thousands of computers
This answer doesn't lend itself to a diagram - it reads best . No credits were charged.
The model's verdict: “”
The interactive diagram is below the answer - jump to diagram ↓
This answer is explained by a shared concept diagram - open →
What are the different Windows Server roles and their purposes?
Answer it yourself first - out loud, or typed below.
How should your speech become text?
Listening… your words appear above as you speak - tap Stop when you're done.
Recording · cr - tap Stop & transcribe when you're done.
Transcribing with AI…
Voice:
Last attempt -
Common Windows Server roles include:
- Active Directory Domain Services (AD DS): Provides directory services and domain authentication
- DNS Server: Resolves domain names to IP addresses
- DHCP Server: Automatically assigns IP addresses to network clients
- File and Storage Services: Manages file shares and storage
- IIS (Web Server): Hosts websites and web applications
- Print and Document Services: Manages network printers
- Remote Desktop Services: Provides remote access to applications and desktops
- Hyper-V: Provides virtualization platform
- Windows Deployment Services (WDS): Deploys Windows operating systems over the network
Each role can be installed and configured based on organizational needs.
This answer doesn't lend itself to a diagram - it reads best . No credits were charged.
The model's verdict: “”
The interactive diagram is below the answer - jump to diagram ↓
This answer is explained by a shared concept diagram - open →
What is the difference between NTFS and FAT32 file systems?
Answer it yourself first - out loud, or typed below.
How should your speech become text?
Listening… your words appear above as you speak - tap Stop when you're done.
Recording · cr - tap Stop & transcribe when you're done.
Transcribing with AI…
Voice:
Last attempt -
NTFS (New Technology File System):
- Supports large files (up to 16 TB) and volumes (up to 256 TB)
- Provides file-level security and permissions
- Supports compression, encryption, and disk quotas
- Has journaling capabilities for better reliability
- Supports symbolic links and hard links
FAT32 (File Allocation Table 32):
- Limited to 4 GB maximum file size
- Maximum volume size of 32 GB (Windows formatting limitation)
- No built-in security features
- Compatible with multiple operating systems
- Simpler structure, faster for small files
NTFS is preferred for Windows systems due to its advanced features and security capabilities.
This answer doesn't lend itself to a diagram - it reads best . No credits were charged.
The model's verdict: “”
The interactive diagram is below the answer - jump to diagram ↓
This answer is explained by a shared concept diagram - open →
What is Active Directory and what are its main components?
Answer it yourself first - out loud, or typed below.
How should your speech become text?
Listening… your words appear above as you speak - tap Stop when you're done.
Recording · cr - tap Stop & transcribe when you're done.
Transcribing with AI…
Voice:
Last attempt -
Active Directory (AD) is Microsoft's directory service that stores information about network resources and enables administrators to manage them. It provides authentication and authorization services in Windows domains.
Main components:
- Domain: A logical group of network objects (users, computers, groups)
- Domain Controller (DC): A server that authenticates users and manages domain objects
- Organizational Units (OUs): Containers used to organize objects within a domain
- Forest: A collection of one or more domains that share a common schema
- Tree: A collection of domains in a contiguous namespace
- Global Catalog: A partial replica of all objects in the forest
- Schema: Defines the structure and attributes of objects in AD
This answer doesn't lend itself to a diagram - it reads best . No credits were charged.
The model's verdict: “”
The interactive diagram is below the answer - jump to diagram ↓
This answer is explained by a shared concept diagram - open →
What is PowerShell and how does it differ from Command Prompt?
Answer it yourself first - out loud, or typed below.
How should your speech become text?
Listening… your words appear above as you speak - tap Stop when you're done.
Recording · cr - tap Stop & transcribe when you're done.
Transcribing with AI…
Voice:
Last attempt -
PowerShell is a task automation and configuration management framework from Microsoft, consisting of a command-line shell and scripting language built on .NET Framework.
Key differences from Command Prompt:
PowerShell:
- Object-oriented (works with .NET objects)
- Extensive cmdlet library with consistent syntax
- Advanced scripting capabilities
- Built-in help system and tab completion
- Can access .NET Framework and WMI
- Supports aliases for common commands
Command Prompt:
- Text-based input/output
- Limited built-in commands
- Basic scripting with batch files
- Legacy tool dating back to DOS
Example: In PowerShell, Get-Process returns process objects with properties and methods. In CMD, tasklist returns text output that requires parsing.
This answer doesn't lend itself to a diagram - it reads best . No credits were charged.
The model's verdict: “”
The interactive diagram is below the answer - jump to diagram ↓
This answer is explained by a shared concept diagram - open →
Explain PowerShell cmdlets and their syntax structure.
Answer it yourself first - out loud, or typed below.
How should your speech become text?
Listening… your words appear above as you speak - tap Stop when you're done.
Recording · cr - tap Stop & transcribe when you're done.
Transcribing with AI…
Voice:
Last attempt -
PowerShell cmdlets follow a consistent Verb-Noun syntax structure, making them intuitive and predictable.
Common verbs:
- Get (retrieve information)
- Set (modify properties)
- New (create objects)
- Remove (delete objects)
- Start/Stop (control services/processes)
Syntax structure:
Verb-Noun -Parameter Value -Switch
Examples:
Get-Service -Name "Spooler"
Set-Location -Path "C:\Windows"
New-Item -ItemType Directory -Name "TestFolder"
Stop-Process -Name "notepad" -Force
Parameters: Modify cmdlet behavior
Switches: Boolean parameters (present or not)
Pipeline: Cmdlets can be chained using the pipe operator (|)
This answer doesn't lend itself to a diagram - it reads best . No credits were charged.
The model's verdict: “”
The interactive diagram is below the answer - jump to diagram ↓
This answer is explained by a shared concept diagram - open →
What is User Account Control (UAC) and how does it work?
Answer it yourself first - out loud, or typed below.
How should your speech become text?
Listening… your words appear above as you speak - tap Stop when you're done.
Recording · cr - tap Stop & transcribe when you're done.
Transcribing with AI…
Voice:
Last attempt -
User Account Control (UAC) is a Windows security feature that helps prevent unauthorized changes to the system by requiring administrative approval for actions that could affect system security.
How UAC works:
- Standard user context: Users run with standard user privileges by default
- Elevation prompt: Administrative actions trigger an elevation prompt
- Admin approval mode: Even administrators run with standard privileges until elevation
- Secure desktop: Elevation prompts run on a secure desktop to prevent spoofing
UAC levels:
- Always notify: Prompt for all administrative actions
- Notify when apps try to make changes: Default setting, prompts for unknown applications
- Notify when apps try to make changes (no dimming): Same as above but without secure desktop
- Never notify: UAC disabled (not recommended)
Benefits: Reduces impact of malware, prevents accidental system changes, promotes principle of least privilege.
This answer doesn't lend itself to a diagram - it reads best . No credits were charged.
The model's verdict: “”
The interactive diagram is below the answer - jump to diagram ↓
This answer is explained by a shared concept diagram - open →
Explain Windows Defender and its components.
What is DNS and how does it work in a Windows environment?
Explain DHCP and its key components.
What are Windows services and how do you manage them?
What is the Windows Registry and what are its main hives?
What are Windows Event Logs and how do you use them for troubleshooting?
What are the different backup types and when would you use each?
Explain the Windows boot process.
Explain the difference between authentication and authorization in Active Directory.
What are Group Policy Objects (GPOs) and how do they work?
What is the Global Catalog and why is it important?
Explain the different types of groups in Active Directory.
How does Group Policy inheritance work?
How do you troubleshoot Group Policy issues?
How do you manage Windows services using PowerShell?
What are PowerShell execution policies and how do you manage them?
Explain NTFS permissions and their types.
What is the difference between NTFS and Share permissions?
What is WINS and when would you use it?
How do you troubleshoot network connectivity issues in Windows?
What is Performance Monitor (PerfMon) and how do you use it?
How do you identify and resolve high CPU usage issues?
What tools would you use to monitor memory usage and identify memory leaks?
How do you troubleshoot a service that won't start?
What is the difference between a process and a thread?
What are the different disk types and partitioning schemes in Windows?
Explain the different RAID levels supported by Windows.
How do you manage disk quotas in Windows?
How do you safely edit the Registry and what precautions should you take?
How do you use Event Viewer to troubleshoot system startup issues?
What tools and techniques do you use for general Windows troubleshooting?
How do you configure Windows Server Backup?
What are the different methods for remote Windows administration?
How do you configure and troubleshoot Remote Desktop Services?
What is Hyper-V and what are its key features?
How do you create and manage virtual machines in Hyper-V?
What are the different types of virtual switches in Hyper-V?
What is Windows Subsystem for Linux (WSL) and how do you manage it?
What is FSMO and what are the different FSMO roles?
What is Group Policy loopback processing?
What is Volume Shadow Copy Service (VSS) and how does it work?
How do you implement and manage Windows containers?
What are some key PowerShell security features and best practices?
This answer is part of Pro.
The full written answer, with the trade-offs and follow-ups an interviewer will probe.
No matches
Try a different filter or search term.
Windows Administration cheatsheet
Windows Administration Interview Cheat Sheet
- Summary01
- Windows Architecture & Core Components02
- User & Group Management03
- File System & Permissions04
- Services Management05
- Process Management06
- Registry Management07
- Network Administration08
- PowerShell Essentials09
- Active Directory Basics10
- Security & Hardening11
- Performance Monitoring12
- + 6 more inside
43 of 50 Windows Administration answers are gated.
Full answers, code samples, AI explanations - simpler, deeper, or as an interactive diagram. Cancel anytime.
- Full answers + code
- AI explain - simpler, deeper, or visualized
- 1,000 AI credits / month
- Cancel anytime
Change topic
Pick a different technology or stack. Your current topic stays put until you choose a new one.
MEAN
MongoDB, Express, Angular, Node.jsMERN
MongoDB, Express, React, Node.jsLAMP
Linux, Apache, MySQL, PHPRuby on Rails
Convention over ConfigurationJAM
JavaScript, APIs, and MarkupServerless on AWS
Serverless Architecture on AWSInterviewers also test these - they're common to every stack, whichever one you picked above.
Flutter Mobile
Flutter Cross-Platform Mobile DevelopmentInterviewers also test these - they're common to every stack, whichever one you picked above.
Spring Boot
Enterprise Java Development.NET
Microsoft EcosystemVue
Vue.js, Vite, TypeScript, Tailwind, Node.jsGo Backend
Golang, gRPC, PostgreSQL, Redis, RabbitMQFastAPI
Python, FastAPI, SQLAlchemy, PostgreSQLReact Native
React, TypeScript, Redux, FirebaseiOS Native
Swift, SwiftUI, UIKit, FirebaseAndroid Native
Java, Jetpack Compose, FirebaseWeb3 / Ethereum
Solidity, Ethereum, Hardhat, FoundryDevOps / Platform
Docker, Kubernetes, Terraform, CI/CDCore SWE Interview Prep
Data structures, algorithms, OS, concurrency, networking, gitInterviewers also test these - they're common to every stack, whichever one you picked above.
Interviewers also test these - they're common to every stack, whichever one you picked above.