General Questions
What is the Windows Operating System?
- It is a series of operating systems developed by Microsoft, offering a graphical interface and designed for personal and enterprise-level use.
What are the key features of Windows OS?
- GUI-based interface, multitasking, built-in security, compatibility with various software, and support for hardware devices.
What is the difference between a Workgroup and a Domain?
- Workgroup: Peer-to-peer network for small setups.
Domain: Centralized network controlled by a domain controller, suitable for larger organizations.
- Workgroup: Peer-to-peer network for small setups.
Explain the NTFS file system.
- NTFS (New Technology File System) supports large files, advanced security, disk quotas, and data recovery.
What is the role of the Windows Registry?
- A hierarchical database that stores configuration settings and options for the Windows OS and installed software.
Troubleshooting Questions
How would you troubleshoot a system that won’t boot?
- Check hardware connections, boot to Safe Mode, run Startup Repair, and verify boot order in BIOS.
What is Safe Mode, and how is it used?
- A diagnostic mode in Windows that loads only essential drivers to troubleshoot issues.
How do you fix a Blue Screen of Death (BSOD)?
- Analyze error codes, check hardware, update drivers, and scan for malware.
How do you recover a forgotten Windows password?
- Use a password reset disk, a local administrator account, or recovery tools.
What is CHKDSK?
- A command-line tool to check and repair disk errors.
Administration Questions
What is Active Directory?
- A directory service by Microsoft for managing network resources like users, computers, and policies.
What is Group Policy?
- A feature to control user and computer configurations in an Active Directory environment.
How do you manage user accounts in Windows?
- Using the Control Panel, Command Prompt, or PowerShell.
What is the purpose of Windows PowerShell?
- A command-line shell and scripting language for task automation and configuration management.
How do you configure Windows Firewall?
- Use the Windows Defender Firewall tool or PowerShell to create and manage rules.
Advanced Questions
What is Hyper-V?
- A virtualization platform by Microsoft for running virtual machines.
What are the differences between Windows 10 Home and Pro editions?
- Windows 10 Pro offers advanced features like BitLocker, Hyper-V, and domain join, which are unavailable in the Home edition.
Explain the concept of UAC (User Account Control).
- A security feature that prevents unauthorized changes by requiring admin-level approval.
What is Windows Deployment Services (WDS)?
- A network-based installation service for deploying Windows operating systems.
What is the Windows Event Viewer?
- A tool to view system logs, application logs, and security logs for troubleshooting and monitoring.
Command-Line Tools
What is the
ipconfig
command used for?- Displays network configuration and TCP/IP settings.
How is the
ping
command used?- Tests network connectivity to another host.
What does the
netstat
command do?- Displays active network connections and listening ports.
What is the purpose of
taskkill
?- Terminates running processes by ID or name.
Explain the
diskpart
command.- A command-line tool for managing disk partitions.
File and Security
What is BitLocker?
- A full-disk encryption feature to protect data from unauthorized access.
How does Windows handle file permissions?
- Through NTFS file system permissions such as Read, Write, Modify, and Full Control.
What is the purpose of Windows Defender?
- A built-in antivirus and antimalware tool for Windows.
What is a Roaming Profile?
- A user profile stored on a network share, allowing access from any domain-joined computer.
Explain EFS (Encrypting File System).
- A feature that provides encryption for individual files and folders on NTFS drives.
Networking
What is the difference between IPv4 and IPv6?
- IPv4 uses a 32-bit address; IPv6 uses a 128-bit address for a larger address space.
What is the purpose of the
nslookup
command?- Queries DNS records for troubleshooting.
How do you configure a static IP address in Windows?
- Through Network Properties or PowerShell.
What is Remote Desktop Protocol (RDP)?
- A protocol for accessing a computer remotely.
What is Windows Server Core?
- A minimalistic installation option for Windows Server without a GUI.
Others
What is Windows Sandbox?
- A lightweight virtual environment for running untrusted applications.
What is the purpose of Windows Update?
- Keeps the OS updated with the latest patches and features.
What are the key differences between FAT32 and NTFS?
- NTFS supports larger files, encryption, and better security than FAT32.
How do you enable or disable services in Windows?
- Through the Services console (
services.msc
) or PowerShell.
- Through the Services console (
What is Sysinternals Suite?
- A collection of tools for advanced troubleshooting and system diagnostics.
What is a System Restore Point?
- A feature that allows reverting the system to a previous state without affecting personal files.
How do you analyze memory dumps?
- Use tools like WinDbg or BlueScreenView to analyze .dmp files.
What is a Windows Recovery Environment (WinRE)?
- A set of tools for troubleshooting startup issues, repairing OS files, and restoring system images.
How do you troubleshoot slow system performance?
- Check Task Manager, disable unnecessary startup programs, run Disk Cleanup, and scan for malware.
How do you fix a corrupt Windows system file?
- Use the
sfc /scannow
andDISM /Online /Cleanup-Image /RestoreHealth
commands.
- Use the
Group Policy Management
What is the purpose of Group Policy Preferences?
- Allows configuring advanced settings like drive mappings and scheduled tasks in Active Directory.
How do you update Group Policy settings manually?
- Use the
gpupdate /force
command.
- Use the
What is the difference between Local and Domain Group Policies?
- Local applies to a single computer, while Domain policies are managed centrally in an Active Directory environment.
How do you troubleshoot Group Policy issues?
- Check
gpresult
output, Event Viewer logs, and Active Directory replication.
- Check
What is the precedence order in Group Policy?
- Local > Site > Domain > Organizational Unit (OU), with the latter having the highest precedence.
Windows Services and Processes
What is a Windows Service?
- A background process that starts automatically or manually and performs specific tasks.
How do you manage services in Windows?
- Use the Services console (
services.msc
) or PowerShell (Get-Service
,Start-Service
).
- Use the Services console (
What is the purpose of the
tasklist
command?- Displays a list of running processes.
How do you configure startup programs?
- Through Task Manager or System Configuration (
msconfig
).
- Through Task Manager or System Configuration (
What is the role of the Windows Task Scheduler?
- Automates tasks by running scripts, launching programs, or sending notifications.
Virtualization and Cloud Integration
What is the role of Virtual Hard Disk (VHD)?
- A file format that acts as a physical disk for virtual machines.
What is Azure Active Directory?
- A cloud-based identity and access management service by Microsoft.
How do you enable virtualization in Windows?
- Enable Intel VT-x or AMD-V in BIOS/UEFI and install Hyper-V.
What is the difference between a Virtual Machine and a Container?
- VMs emulate hardware and run a full OS; containers share the host OS kernel.
What is Windows Subsystem for Linux (WSL)?
- A compatibility layer for running Linux distributions on Windows.
Disk Management
What is Disk Management?
- A tool for managing drives, partitions, and volumes.
What is the difference between Basic and Dynamic disks?
- Basic disks use primary/logical partitions; Dynamic disks support volumes like spanned and striped.
How do you extend a partition?
- Use Disk Management or the
diskpart
tool.
- Use Disk Management or the
What is the purpose of Disk Cleanup?
- Frees up space by removing temporary files, system files, and other unnecessary data.
How do you convert a drive from FAT32 to NTFS?
- Use the
convert
command:convert <drive>: /fs:ntfs
.
- Use the
Performance and Optimization
What is Windows ReadyBoost?
- Uses a USB flash drive as additional memory to improve performance.
What are Performance Monitor and Resource Monitor?
- Tools for monitoring and analyzing system performance and resource usage.
How do you check the startup impact of applications?
- In Task Manager under the "Startup" tab.
What is Superfetch?
- A feature that preloads frequently used applications into memory for faster access.
How do you disable unnecessary services?
- Use
services.msc
or PowerShell to stop or disable services safely.
- Use
Security and Permissions
What is the purpose of the Local Security Policy?
- Configures security-related settings for the local computer.
What is the difference between Share and NTFS permissions?
- Share permissions apply to network-shared folders; NTFS permissions apply to files and folders locally.
What is a Security Identifier (SID)?
- A unique identifier for users, groups, and objects in Windows.
How do you secure a Remote Desktop Connection?
- Use Network Level Authentication (NLA), strong passwords, and RDP Gateway.
What is a firewall exception?
- A rule that allows or blocks specific programs or ports through the firewall.
Windows Updates and Patching
What is WSUS (Windows Server Update Services)?
- A server-based system for managing updates in a networked environment.
What is the difference between Feature Updates and Quality Updates?
- Feature Updates introduce new features; Quality Updates address security and reliability issues.
How do you roll back a Windows update?
- Use the Settings app under "Update History" or boot into Safe Mode.
What is a Service Pack?
- A cumulative update that includes fixes and enhancements.
What is the purpose of the Windows Update Troubleshooter?
- Diagnoses and fixes common issues with Windows Update.
Scripting and Automation
What is a batch file?
- A script file containing a series of commands executed by the Command Prompt.
How do you run PowerShell scripts?
- Use the
powershell
command followed by the script path.
- Use the
What is Task Automation in Windows?
- Automating repetitive tasks using scripts or Task Scheduler.
What is a
.ps1
file?- A PowerShell script file.
What are Windows Management Instrumentation (WMI) commands?
- A set of commands for managing and querying system information.
Miscellaneous
What is the difference between Windows Server and Windows Desktop?
- Windows Server is designed for server roles, whereas Desktop editions are for end-users.
What is Cortana?
- A virtual assistant in Windows for voice-activated commands and search.
What is the purpose of Sticky Notes in Windows?
- A simple app for creating notes and reminders.
What is the purpose of the
robocopy
command?- A robust file copying utility for large datasets.
What is the Windows Compatibility Mode?
- Allows running older applications by simulating earlier Windows environments.
Wrap-Up Questions
What is the difference between hibernate and sleep modes?
- Hibernate saves the session to disk and powers off; Sleep keeps the session in RAM.
What is the purpose of
msconfig
?- Configures system startup options, including boot parameters.
What is Windows Hello?
- A biometric authentication feature in Windows.
What is a Service Host process?
- A system process that hosts multiple Windows services.
What is the Event Log?
- A record of system, security, and application events.
What is the difference between 32-bit and 64-bit Windows?
- 64-bit supports larger memory and is faster for compatible hardware.
What is Windows Defender SmartScreen?
- A feature that protects against phishing and malware.
What is Microsoft Edge?
- A web browser included with Windows.
What is Windows Power Automate?
- A tool for creating automated workflows.
How do you troubleshoot driver issues? - Use Device Manager to update, rollback, or reinstall drivers.
Comments
Post a Comment