Applying the most frequently used Group Policy settings: security settings such as password and account lockout, audit policy, software deployment, folder redirection, scripts, drive mapping, printers, and loopback processing.

Episode 9 gave you the machine — how Group Policy works. Episode 10 fills it with fuel: the settings most often used in the real world. From the password policy that protects the domain, auditing that records the trail, software deployment that saves hours, to drive mapping and printers that put a smile on users' faces.
We'll cover security settings (password policy, account lockout, audit), where each setting lives in the Computer or User Configuration branch, software deployment via GPO, folder redirection, scripts, drive mapping, printers, and loopback processing for kiosk scenarios.
Before diving in, understand where settings live:
| Setting | Default location |
|---|---|
| Password and lockout policy | Computer Config > Policies > Windows Settings > Security Settings > Account Policies |
| Audit policy | Computer Config > Policies > Security Settings > Local Policies > Audit Policy |
| Software installation | Computer/User Config > Policies > Software Settings > Software installation |
| Folder redirection | User Config > Policies > Windows Settings > Folder Redirection |
| Scripts (startup/logon) | Computer Config > Policies > Windows Settings > Scripts |
Why is password policy in Computer Configuration? Because password policy is enforced by the domain controller (a computer), not by the user. This is a good example of why choosing the right branch matters — you won't find password policy under User Configuration.
These are the most fundamental security settings in a domain. They live under Account Policies:
| Setting | Recommended value |
|---|---|
| Minimum password length | 12 characters or more |
| Enforce password history | 24 passwords |
| Maximum password age | 90 days |
| Minimum password age | 1 day |
| Account lockout threshold | 5-10 failed attempts |
| Account lockout duration | 30 minutes |
Long passwords beat frequently changed ones: a minimum length policy of 12-16 characters is far more effective against brute force attacks than changing an 8-character password every month. Account lockout prevents password-guessing attacks, but don't make it too strict — a threshold of 3 attempts with a long duration can trigger a denial of service for your own users. To test changes, run gpupdate /force on the client. In episode 11 we'll see how different policies can be applied to different groups.
Auditing determines what gets recorded in the Security event log. The most useful categories:
| Audit category | What gets recorded |
|---|---|
| Account logon events | Authentication events |
| Account management | Account and group creation and changes |
| Logon events | Logins to machines |
| Object access | Access to audited objects |
| Policy change | Policy changes |
| Privilege use | Use of privileges |
Rule of thumb: enable auditing for Success and Failure on account management and account logon — the overhead cost is small and the value is enormous during incident investigation. For more modern systems, use Advanced Audit Policy, which is far more granular than the classic categories, and verify the status via auditpol /get. Auditing without routine review only leaves behind a bloated log — pair it with monitoring (the topic of episode 23).
Still under Security Settings: User Rights Assignment governs who may perform privileged actions like Log on locally, Shut down the system, or Access this computer from the network. Security Options govern system behavior, such as disabling the Administrator account or enforcing UAC. Both must be changed with full understanding — a mistake here can lock down the entire system.
GPO can install MSI-based software to many computers at once. Two deployment models:
Software deployment suits applications rolled out to the whole organization that rarely change. The limitation: applications must be MSI-based (or have an MSI transform), and modern application management tends to move to tools like Intune or SCCM. For simple deployments, GPO remains a reliable weapon.
Folder Redirection moves user folders (Documents, Desktop, Downloads) to a network share. The benefits:
Don't confuse it with roaming profiles: roaming profiles sync the entire profile (including registry) to a server — heavy and fragile; folder redirection only moves specific folders — light and more resilient. For most organizations, folder redirection makes more sense than a full roaming profile.
GPO supports scripts that run at specific points:
| Script type | When it runs |
|---|---|
| Computer Startup | When the computer starts |
| Computer Shutdown | When the computer shuts down |
| User Logon | When a user logs in |
| User Logoff | When a user logs off |
A classic logon script connects network drives. Example PowerShell script:
New-PSDrive -Name "P" -PSProvider FileSystem -Root "\\fileserver\Proyek" -Persist -Scope GlobalCaution: logon scripts add to login time and run in the user's context. The New-PSDrive cmdlet in the example above maps the drive persistently so it reconnects after a reboot. Replace scripts with Group Policy Preferences when the same result can be achieved without a script — preferences are faster and easier to debug.
Network drive mapping is better done via Group Policy Preferences > Drive Maps these days, not logon scripts:
A common pattern: drive P for a shared project folder, drive H for each user's private home directory. Use clear, consistent names so users don't get confused.
Printers can be deployed via GPO in two ways: Deployed Printers under Computer/User Configuration (locked down, system-managed), or Preferences > Printers (defaults users can change). Item-Level Targeting lets a Surabaya office printer apply only to users in the Surabaya OU. This eliminates the manual "install the printer" work that burdens the helpdesk.
Loopback processing is a special mode that applies User Configuration settings based on the computer, not the user. Two modes:
When is it used? Kiosk scenarios: a lobby computer must display a restricted menu regardless of which account logs in. Without loopback, every user brings their own settings; with loopback replace, the computer "forces" its settings. Enable it via Computer Configuration > Administrative Templates > System > Group Policy > User Group Policy loopback processing mode.
Episode 10 equips you with the most frequently used settings: security settings with password and account lockout policy, audit policy that records the trail, user rights and security options, software deployment in the assigned and published models, folder redirection compared against roaming profiles, scripts at four lifecycle points, drive mapping via preferences, printer deployment, and loopback processing for special scenarios.
Key takeaways:
All the security settings in this episode — password, lockout, audit — actually share a limitation: they apply uniformly to the whole domain. In episode 11 we discuss the solution: Fine-Grained Password Policies, which allow different password policies for different groups of users. See you in episode 11!