Chapter_01_Group_Policy_Introduction

 

Windows Server Group Policy (GPO) Master Handbook

Chapter 1 - Introduction to Group Policy
Enterprise Edition

1. What is Group Policy?

Group Policy is a Windows feature that allows administrators to centrally manage user and computer settings in an Active Directory environment. Instead of configuring each computer manually, administrators create a Group Policy Object (GPO) and apply it to domains or organizational units.

2. Why Use Group Policy?

Standardizes security settings, deploys software, maps drives, installs printers, enforces password policies, configures Windows Update, manages Microsoft Defender, controls USB devices, and reduces administrative effort.

3. Local GPO vs Domain GPO

Local GPO affects only one computer. Domain GPO is stored in Active Directory and SYSVOL, and applies to users and computers based on scope and inheritance.

4. GPO Processing (LSDOU)

Policies are processed in this order: Local → Site → Domain → Organizational Unit. Later policies can override earlier settings unless blocked or enforced.

5. Computer vs User Configuration

Computer Configuration applies during computer startup regardless of who signs in. User Configuration applies when a user signs in.

6. SYSVOL and NETLOGON

SYSVOL stores Group Policy templates and scripts replicated among domain controllers. NETLOGON stores logon scripts and shared resources.

7. Common Administrative Tools

gpmc.msc, gpedit.msc, rsop.msc, gpupdate, gpresult, Event Viewer, Active Directory Users and Computers.

8. PowerShell Commands

Get-GPO -All
Get-GPInheritance -Target "OU=IT,DC=contoso,DC=com"
New-GPO -Name "Desktop Policy"
Backup-GPO -All -Path D:\GPOBackup
Restore-GPO -Name "Desktop Policy"
gpupdate /force
gpresult /h C:\Temp\gporeport.html

9. Troubleshooting

• Run gpupdate /force.
• Generate gpresult /h report.html.
• Verify the computer and user are in the correct OU.
• Check Security Filtering and WMI Filters.
• Verify SYSVOL replication (DFSR).
• Review Event Viewer under Applications and Services Logs > Microsoft > Windows > GroupPolicy.
• Confirm DNS points to domain controllers only.
• Check replication using repadmin /replsummary.

10. Best Practices

• Create separate GPOs for security and desktop settings.
• Test in a lab OU before production.
• Use descriptive GPO names.
• Back up GPOs regularly.
• Avoid editing Default Domain Policy except for account policies.
• Minimize Block Inheritance and Enforced usage.

11. Interview Questions

Q1. What is Group Policy?
Q2. Explain LSDOU.
Q3. Difference between Computer and User Configuration?
Q4. What are GPC and GPT?
Q5. How do you troubleshoot a GPO that is not applying?
Q6. What is loopback processing?
Q7. What is SYSVOL?
Q8. What is Security Filtering?
Q9. What is a WMI Filter?
Q10. Which tools are used to troubleshoot GPO?

12. Practical Lab

1. Create an OU named IT.
2. Create a GPO named IT Desktop Policy.
3. Configure a desktop wallpaper.
4. Link the GPO to the IT OU.
5. Run gpupdate /force.
6. Verify with gpresult /h report.html.

Useful Group Policy Paths

Policy

Path

Password Policy

Computer Configuration > Windows Settings > Security Settings > Account Policies

Windows Update

Computer Configuration > Administrative Templates > Windows Components > Windows Update

Desktop Wallpaper

User Configuration > Administrative Templates > Desktop > Desktop Wallpaper

Drive Mapping

User Configuration > Preferences > Windows Settings > Drive Maps

Folder Redirection

User Configuration > Windows Settings > Folder Redirection

BitLocker

Computer Configuration > Administrative Templates > Windows Components > BitLocker Drive Encryption

LAPS

Computer Configuration > Administrative Templates > System > LAPS

 

Comments

Popular posts from this blog

IIS Installation and Application configuration windows swerver

IIS Self Signed

Here’s a step-by-step guide on configuring WDS on Windows Server