Windows Parental Controls ยท 2025 Guide

Screen Time Limits on
Windows 10 & Windows 11

How to set up, manage, and enforce computer usage time limits โ€” from built-in Microsoft tools to Group Policy and third-party software.

โฑ 15 min read ๐Ÿ–ฅ Windows 10 & 11 ๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง Parental Controls ๐Ÿ”’ Local & Domain Accounts ๐Ÿ“… Updated March 2025

Why Set Screen Time Limits on Windows 10 and Windows 11?

Excessive unregulated computer time is linked to disrupted sleep, reduced physical activity, and difficulties concentrating in school-age children. Whether you are a parent managing a household PC, an IT administrator controlling employee workstations, or someone who simply wants to build healthier personal habits, Windows offers several built-in and third-party tools to restrict computer usage by time of day, total daily hours, or both.

Unlike mobile platforms where screen time controls are baked into every device, Windows has historically scattered these features across different interfaces. With Windows 10 version 1803 and the subsequent Windows 11 redesign, Microsoft unified most parental controls under the Microsoft Family Safety umbrella โ€” but the older Local Security Policy and Group Policy methods remain fully functional and are often more powerful.

โ„น๏ธ
Who this guide is for This article covers Windows 10 (version 21H2 and later) and Windows 11 (all versions). Screenshots and menu paths reflect the latest cumulative updates as of March 2025. Some UI elements may differ slightly on older feature releases.
๐Ÿ‘จโ€๐Ÿ‘ง
Primary use case
Parental controls
๐Ÿข
Enterprise use
Group Policy / GPO
๐Ÿ™‹
Self-discipline
Third-party apps
๐Ÿ”‘
Requires admin?
Yes, always

Overview of Available Methods to Restrict Computer Time on Windows

Before diving into step-by-step instructions, it helps to understand the landscape. Windows provides four distinct approaches to limiting usage time, each suited to different scenarios and technical skill levels.

Method 01

Microsoft Family Safety

Cloud-based, works across devices. Best for families with Microsoft accounts. Requires internet connectivity to sync.

Method 02

Local Account Time Restrictions

Built into Windows since XP via net user command. Offline, no Microsoft account needed. Hour-by-hour blocking only.

Method 03

Group Policy Editor

Available on Pro, Enterprise, and Education editions. Granular control but requires domain or local GPO knowledge.

Method 04

Third-Party Software

Tools like Qustodio, Circle, or Cold Turkey offer daily limits, app-level blocking, and detailed usage reports.

โš ๏ธ
Windows Home vs Pro The Group Policy Editor (gpedit.msc) is not available on Windows 10/11 Home edition. Methods 1, 2, and 4 work on all editions. If you need GPO-level control on Home, consider upgrading to Pro or using a third-party tool instead.

How to Set Screen Time Limits Using Microsoft Family Safety on Windows 10 and 11

โœ“ Easiest Method

Microsoft Family Safety is the most feature-rich and user-friendly option for parents. It allows you to set daily screen time schedules, app and game limits, content filters, location tracking, and spending controls โ€” all from a single dashboard that syncs across Windows, Xbox, and Android/iOS devices.

Step 1 โ€” Create a Microsoft Family Group

  1. Open Settings (Win + I) โ†’ Accounts โ†’ Family & other users.
  2. Click "Add a family member" and choose "Create an account for a child" if the child does not have a Microsoft account yet, or enter their existing email address.
  3. Complete the wizard. The child will receive an invitation email (or you can accept on their behalf if they are young).
  4. On the child's Windows profile, ensure they are signed in with their Microsoft account โ€” not a local account โ€” otherwise Family Safety limits will not apply.

Step 2 โ€” Configure Screen Time Schedule

  1. Go to family.microsoft.com and sign in with the organizer (parent) account.
  2. Select the child's profile, then click "Screen time" in the left sidebar.
  3. Toggle "Use one schedule for all devices" ON if you want the same limits on PC and Xbox, or toggle it OFF to set a separate Windows schedule.
  4. For each day of the week, set the allowed time range (e.g., 3:00 PM โ€“ 8:00 PM) and the total daily limit (e.g., 2 hours). Both limits apply simultaneously โ€” the session ends when either is reached.
  5. Click Save. Changes sync to the device within minutes when connected to the internet.
โœ…
Pro Tip Enable "Send a weekly activity report" in the Family Safety dashboard to receive an email summary of your child's app usage, screen time, and web browsing โ€” without having to log in every day.

Step 3 โ€” Set Per-App Time Limits

Beyond total screen time, Family Safety lets you restrict specific applications. Navigate to Apps and games in the child's profile. Windows will automatically populate a list of apps the child has used. You can set individual daily time budgets per app โ€” for example, limiting a game to 1 hour even if the child still has general screen time remaining.

โš ๏ธ
Offline caveat Microsoft Family Safety enforces limits locally via a Windows service, but scheduling changes require internet sync. If a child uses the PC offline for extended periods, the last synced schedule continues to apply. A child who disconnects from Wi-Fi before the sync cannot bypass an already-active schedule, but they could potentially use the PC during blocked hours if the device was offline when the block was supposed to begin.

How to Restrict Computer Usage Hours on a Local Windows Account (No Microsoft Account Required)

No Account Needed

If privacy is a concern or the managed user does not have a Microsoft account, Windows includes a built-in command-line tool โ€” net user โ€” that restricts which hours of the day a local account can log in. This method has been part of Windows since the NT era and is completely offline.

โš ๏ธ
Important limitation The net user /times command restricts login hours only. It does not enforce a daily usage limit (e.g., "2 hours total"). It also does not log the user out if they are already active when the blocked period begins โ€” it only prevents new logins. To force logoff, pair this with a scheduled task.

Setting Login Hours via Command Prompt

Open Command Prompt as Administrator (right-click Start โ†’ Terminal (Admin) or search "cmd" and run as admin), then use the syntax below.

Command Prompt โ€” Administrator
:: Allow login only Monday-Friday 3pm-9pm, Saturday-Sunday 10am-8pm
net user ChildAccount /times:M-F,15:00-21:00;Sa-Su,10:00-20:00

:: Allow all hours (remove restriction)
net user ChildAccount /times:all

:: Block all login (account locked out entirely)
net user ChildAccount /times:none
๐Ÿ’ก Tip: Replace ChildAccount with the exact username as shown in Control Panel โ†’ User Accounts. Usernames with spaces must be wrapped in quotes: "Child Account".

Force Logoff When Blocked Hours Begin (Scheduled Task)

  1. Open Task Scheduler (search in Start menu).
  2. Click "Create Basic Task" โ†’ name it "Force Logoff Child Account".
  3. Set the trigger to Daily at the start of the blocked period (e.g., 9:00 PM).
  4. Set the action to Start a program: Program = shutdown, Arguments = /l /f (this logs off all users forcefully).
  5. In Settings, check "Run whether user is logged on or not" and run with highest privileges.
๐Ÿšจ
Warning โ€” unsaved work The /f flag forcefully closes all applications. Any unsaved documents will be lost. Consider using a notification script to warn the user 5โ€“10 minutes before logoff (using msg * "Computer will shut down in 5 minutes").

How to Enforce Screen Time Limits Using Group Policy Editor on Windows 10 and 11 Pro

โš™ Advanced โ€” Pro/Enterprise Only

The Local Group Policy Editor (gpedit.msc) is available on Windows 10/11 Pro, Enterprise, and Education editions. While it does not include a dedicated "screen time" setting, you can combine several policies to achieve granular control โ€” including logon hour enforcement, app blocking, and automatic workstation lock.

Opening Group Policy Editor

  1. Press Win + R, type gpedit.msc, and press Enter.
  2. The editor opens with two main trees: Computer Configuration (applies to the machine) and User Configuration (applies per user account).

Key Policies for Time Management

Policy Path Setting Name Effect
Computer Config โ†’ Windows Settings โ†’ Security Settings โ†’ Local Policies โ†’ Security Options Interactive logon: Machine inactivity limit Locks the screen after N seconds of inactivity
User Config โ†’ Admin Templates โ†’ Control Panel โ†’ Personalization Enable screen saver / Force specific screen saver Forces lock screen after idle time
Computer Config โ†’ Windows Settings โ†’ Security Settings โ†’ Account Policies โ†’ Account Lockout Account lockout threshold Locks account after failed login attempts
User Config โ†’ Admin Templates โ†’ System Prevent access to the command prompt Stops bypassing restrictions via CMD
User Config โ†’ Admin Templates โ†’ Windows Components โ†’ File Explorer Prevent users from adding/removing apps Blocks installation of workaround tools
๐Ÿ’ก Best Practice: Create a dedicated restricted user account and link GPO policies to that account's OU (in domain environments) or apply User Configuration policies selectively. Avoid modifying Computer Configuration policies for time limits, as these affect all users including administrators.

Applying Policies to Specific Users (Non-Domain)

On a standalone (non-domain) PC, the Local Group Policy Editor applies settings to all users by default. To target a specific user account, use the Microsoft Management Console (mmc.exe) to create a custom GPO snap-in scoped to a particular user. This is an advanced workflow and is documented in Microsoft's support article KB3047861.

Screen Time Restrictions via Windows Registry (Advanced Method)

โš™ Advanced Users Only

For administrators who need scriptable, policy-independent time restrictions, the Windows Registry contains several keys that can enforce logon hour limits and application access controls. This method is powerful but carries risk โ€” incorrect registry edits can destabilize Windows.

๐Ÿšจ
Back up first Before editing the registry, export a backup: open regedit โ†’ File โ†’ Export โ†’ save as registry-backup.reg. To restore, simply double-click the .reg file.

Logon Hours via Registry

Windows stores logon hour restrictions in the Security Account Manager (SAM) hive, which is not directly editable through regedit under normal circumstances. The recommended scriptable approach is to use net user combined with a PowerShell startup script deployed via Task Scheduler.

PowerShell โ€” Run as Administrator
# Set logon hours: Mon-Fri 3pm-9pm, weekends 10am-8pm
$username = "ChildAccount"
net user $username /times:M-F,15:00-21:00;Sa-Su,10:00-20:00

# Verify the setting was applied
net user $username | Select-String "Logon hours"

Restricting Application Execution via Registry

The Software Restriction Policies registry keys under HKLM\SOFTWARE\Policies\Microsoft\Windows\Safer can block specific executables. Combined with time-based scheduled tasks that enable or disable these keys, you can create a rudimentary app-blocking schedule without Group Policy.

Registry โ€” Software Restriction
; Block an application via Registry (example: block Steam outside hours)
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Safer\CodeIdentifiers\0\Paths\{GUID}]
"Description"="Block Steam outside allowed hours"
"ItemData"="C:\\Program Files (x86)\\Steam\\steam.exe"
"SaferFlags"=dword:00000000

Best Third-Party Screen Time Software for Windows 10 and Windows 11 (2025)

๐Ÿ’ผ Paid & Free Options

When built-in tools fall short โ€” especially for detailed usage reports, per-app daily limits, or cross-platform consistency โ€” third-party software fills the gap. Here are the most reliable options in 2025.

Software Platform Key Feature Price Best For
Qustodio Windows, Mac, iOS, Android Per-app time limits, detailed reports, panic button From $54.95/yr Families, comprehensive monitoring
Net Nanny Windows, Mac, iOS, Android Dynamic content filtering + screen time From $39.99/yr Content control + time limits
Cold Turkey Windows, Mac Unbreakable blocks, pomodoro timer, schedule $39 one-time Self-discipline, adults
Circle Home Plus Router-level (all devices) Network-wide limits, no software install on device $129 device + $9.99/mo Whole-home management
KidLogger Windows, Mac, Android Keylogging, screenshot capture, time tracking Free / $27/yr Detailed monitoring (privacy concerns)
Freedom Windows, Mac, iOS, Android, Chrome Cross-device website + app blocking sessions $3.33/mo (annual) Productivity, adults
๐Ÿ’ก
Editor's Pick For families with children aged 6โ€“16, Qustodio offers the best balance of granular controls, cross-platform coverage, and reporting. For adults seeking self-imposed limits without easy workarounds, Cold Turkey is notably difficult to circumvent โ€” it survives reboots and prevents uninstallation during active blocks.

How Children Bypass Windows Screen Time Limits โ€” and How to Stop It

Understanding common workarounds is essential to building effective restrictions. Technically savvy children often discover these methods within days of a new restriction being applied.

Common Bypass Techniques & Countermeasures

Bypass Method How It Works Countermeasure
Changing system clock Moving the time forward to appear within allowed hours Sync time via NTP server; restrict clock-change access via GPO (System time privilege removal)
Using a different user account Logging in as another unrestricted account Remove all standard accounts; password-protect admin account; disable Guest account
Booting from USB / Live OS Running a portable OS that bypasses Windows entirely Enable Secure Boot; set BIOS/UEFI password; disable USB boot order
VPN or Tor browser Circumventing network-level content filters Block VPN protocols at router level; use DNS filtering (e.g., CleanBrowsing, NextDNS)
Safe Mode boot Many parental control services don't run in Safe Mode Require password to access Safe Mode (available via msconfig); use Cold Turkey which persists in Safe Mode
Uninstalling the control software Removing the third-party tool from Programs Use tools with tamper protection; restrict Programs access via GPO; Qustodio and Cold Turkey require password to uninstall
โœ…
Defense-in-depth No single method is bypass-proof. The most resilient setup combines Microsoft Family Safety (cloud-enforced limits) + BIOS password + Secure Boot (prevents USB bypass) + router-level DNS filtering (blocks VPN services) + removal of admin rights from the child's account.

Pros and Cons of Each Screen Time Limiting Method on Windows

Microsoft Family Safety

โœ“ Pros

  • Easy graphical interface โ€” no technical knowledge required
  • Cross-device (Windows, Xbox, Android, iOS) synchronization
  • Per-app time budgets and content filtering included
  • Weekly activity report emails for parents
  • Child can request extra time via the Family Safety app

โœ— Cons

  • Requires a Microsoft account for both parent and child
  • Reduced functionality when the PC is offline for long periods
  • Limited control over specific application categories
  • Not available for domain-joined (workplace) machines

net user /times (Local Account)

โœ“ Pros

  • Completely offline โ€” no Microsoft account or internet needed
  • Works on every Windows edition including Home
  • Scriptable and automatable via batch or PowerShell
  • Zero cost โ€” fully built into Windows

โœ— Cons

  • Restricts login hours only, not total daily time
  • Does not automatically log out an active session
  • No reporting or usage history
  • Command-line only โ€” no GUI

Group Policy Editor

โœ“ Pros

  • Extremely granular โ€” dozens of relevant policies available
  • Integrates with Active Directory for enterprise deployment
  • Can restrict specific applications, settings, and system features
  • No third-party dependency

โœ— Cons

  • Not available on Windows Home edition
  • Steep learning curve for non-IT users
  • No built-in daily usage timer โ€” requires workarounds
  • Misconfiguration can lock out all users including admin

Frequently Asked Questions About Windows Screen Time Limits

Q Can I set screen time limits on Windows 11 Home without a Microsoft account? โ–ผ
Yes. Use the net user /times command in an elevated Command Prompt to restrict login hours for a local account. This requires no Microsoft account and works on all Windows editions. However, you lose features like daily time budgets, per-app limits, and activity reports that Family Safety provides.
Q Does Microsoft Family Safety work if the child uses the PC offline? โ–ผ
Partially. The Windows Family Safety service stores the last synced schedule locally and continues enforcing it offline. However, any changes you make in the Family Safety dashboard will not take effect until the device reconnects to the internet. A fully offline device will keep enforcing whatever schedule was last downloaded.
Q How do I set different screen time limits for weekdays vs weekends in Windows 11? โ–ผ
In Microsoft Family Safety at family.microsoft.com, the Screen Time section lets you configure each day of the week independently. Simply set a shorter daily limit for Monday through Friday and a longer one for Saturday and Sunday. With net user /times, the syntax supports different ranges per day: M-F,15:00-21:00;Sa-Su,10:00-20:00.
Q Can a child request extra screen time in Windows Family Safety? โ–ผ
Yes. When a child's screen time limit is reached, Windows shows a lock screen with an option to request more time. The parent receives a notification in the Microsoft Family Safety app on their phone and can approve or deny the request remotely with one tap. You can also set a maximum number of extension minutes that can be granted per day.
Q Will screen time limits affect an administrator account? โ–ผ
No. Microsoft Family Safety restrictions and net user /times settings apply only to the specific account they are configured for. The parent or administrator account remains unrestricted. This is by design โ€” you should always keep a separate admin account with a strong password that the child does not know.
Q How do I completely remove or disable screen time limits I previously set? โ–ผ
For Family Safety: go to family.microsoft.com โ†’ child's profile โ†’ Screen Time โ†’ toggle off all limits. For net user /times: run net user ChildAccount /times:all in an admin Command Prompt. For Group Policy changes: open gpedit.msc and set affected policies back to "Not Configured".
Q Is there a way to get a usage report showing how long my child used the PC? โ–ผ
Microsoft Family Safety provides weekly activity reports sent by email and an interactive timeline in the dashboard showing daily app-by-app usage. For more detailed monitoring (screenshots, keystrokes, website visits), third-party tools like Qustodio or KidLogger offer more comprehensive logging โ€” though these raise privacy considerations that warrant an open conversation with your child.

Which Windows Screen Time Method Should You Choose?

The right tool depends entirely on your situation. Here is a quick decision guide to point you in the right direction.

๐ŸŽฏ Quick Decision Guide

Family with kids, Microsoft accounts already in use? โ†’ Start with Microsoft Family Safety. It is the most complete, easiest-to-manage solution and it is free.

Privacy-focused household or offline PC? โ†’ Use net user /times for login hour restrictions, supplemented by a scheduled logoff task.

IT administrator managing company workstations? โ†’ Deploy time-based restrictions through Group Policy or Active Directory, combined with network-level controls at the firewall.

Adult wanting to limit your own computer time? โ†’ Cold Turkey or Freedom are purpose-built for this use case and notably harder to bypass than parental controls.

Need cross-device coverage including gaming consoles and mobile? โ†’ Circle Home Plus (router-level) or Qustodio (agent-based) offer the broadest coverage.