Guest Profile Reset Setup

This guide outlines the configuration of a Windows 11 local account to function as a guest account. Each session is automatically wiped after system shutdown or restart, ensuring privacy and a clean slate for every user.

1. Overview

Objective: Create a stable, self-resetting guest-like user account for public/shared use in a reading room or conference space.

How it works (we will use “Padilla Reading Room” throughout this guide):

2. Tools Used

3. Setup Steps

Step 1: Create the Local User

Run the following in an elevated Command Prompt:

net user "Padilla Reading Room" /add /active:yes

net localgroup Users "Padilla Reading Room" /add

Optionally set a blank password:

net user "Padilla Reading Room" ""

(Note: you can skip this if you create the account using “Other Users” in Windows Settings)

Step 2: Download and Place DelProf2

  1. Download from: https://helgeklein.com/free-tools/delprof2-user-profile-deletion-tool/
  2. Extract and place DelProf2.exe in: C:\Tools\DelProf2.exe

Step 3: Create the Cleanup Script

Create a new script: C:\Tools\ResetPadillaProfile.cmd

@echo off

echo [%date% %time%] Deleting Padilla Reading Room profile >> C:\Tools\ProfileReset.log

C:\Tools\DelProf2.exe /u /id:"Padilla Reading Room" >> C:\Tools\ProfileReset.log 2>&1

Step 4: Set Up the Scheduled Task

  1. Open Task Scheduler as Administrator
  2. Create a new Task (not Basic Task)
  3. On the General tab:
  • On the Triggers tab:
  • On the Actions tab:
  • Save and exit
  • 4. Why It Works

    5. Optional Enhancements

    Restrict users from:

    Applies only to the Padilla Reading Room user. 

    1. Accessing Control Panel and Settings

    Open gpedit.msc, then go to each of the following paths:

    User Configuration > Administrative Templates > Control Panel

    Setting: Prohibit access to Control Panel and PC settings

    Action: Enable

    1. Opening Drives (like C:)

    User Configuration > Administrative Templates > Windows Components > File Explorer

    Setting: Prevent access to drives from My Computer

    Enable, then choose:

    Restrict C drive only

    Or Restrict all drives

    1. Remove “Run”, “Command Prompt”, etc.

    User Configuration > Administrative Templates > Start Menu and Taskbar

    Remove Run menu from Start Menu → Enable

    Prevent access to the command prompt → Enable

    Remove access to the Shut Down, Restart, Sleep → Enable (optional)

    1. Disable Registry Editor

    User Configuration > Administrative Templates > System

    Prevent access to registry editing tools → Enable

    1. Disable Task Manager

    User Configuration > Administrative Templates > System > Ctrl+Alt+Del Options

    Remove Task Manager → Enable

    6. Troubleshooting

    7. Conclusion

    This setup ensures a secure guest login experience for shared spaces using native Windows tools and a lightweight utility (delprof2). It is ideal for reading rooms, labs, or conference stations where user data should never persist between sessions.