0:00–0:10
Recap
0:10–0:40
Lecture
0:40–1:40
Guided Lab
1:40–1:50
Bonus
1:50–2:00
Debrief
0:00 – 0:10 Recap · 10 min

Day 3 review & the user storage gap

0:10 – 0:40 Lecture · 30 min

OneDrive for Business — architecture, policies, and lifecycle

OneDrive for Business is personal cloud storage provisioned per licensed user — it is not the consumer OneDrive. Each user gets their own site collection (a SharePoint site behind the scenes) at a tenant-defined URL. Admins govern capacity, sync behaviour, and what happens at end-of-life.

User departure — the OneDrive lifecycle

User account
deleted
Day 0
OneDrive
preserved
Days 1–30 (default)
Manager
notified
Email sent automatically
Admin
grants access
Secondary owner set
OneDrive
deleted
After preservation period
Instructor note: The Known Folder Move topic is worth dwelling on briefly — it's the feature that generates the most user complaints (unexpected folder behaviour) but provides the most operational value (automatic backup of working files). Framing it as "silent backup that just works" vs "sync client the user has to remember to use" helps students understand why it's the recommended deployment pattern.
0:40 – 1:40 Guided lab · 60 min

Lab 4-D: Configuring OneDrive policies for Lakeview Logistics

Students explore the OneDrive admin centre, configure storage quotas, set the retention policy for departed user OneDrives, configure manager notification and secondary owner access, explore sync client settings, and simulate the user departure process by granting admin access to a test user's OneDrive.

OneDrive quota changes take effect gradually: Changing the default quota affects newly provisioned OneDrives. Existing OneDrives that already have a higher quota are not automatically reduced — you would need to update them individually via PowerShell if you needed to enforce a lower limit across all existing accounts.
Instructor note: Step 6 is the most operationally relevant step. The ability to grant admin access to a departed user's OneDrive is a procedure that students will use in their careers. Walk through Step 6 slowly — show the Active sites filter, demonstrate finding OneDrive personal sites, and explain the difference between being a site admin (can manage everything) and having secondary owner access (time-limited, read-oriented). The distinction matters for least-privilege practice.
1:40 – 1:50 Bonus material · 10 min

⭐ Bonus: OneDrive quota reporting & Known Folder Move via PowerShell

⭐ Bonus A — OneDrive storage usage report via PowerShell
  • Connect to SharePoint Online PowerShell: Connect-SPOService -Url https://[tenant]-admin.sharepoint.com
  • List all OneDrive personal sites with storage usage:
    Get-SPOSite -IncludePersonalSite $true -Limit All -Filter "Url -like '-my.sharepoint.com/personal/'" | Select-Object Owner, Url, StorageUsageCurrent, StorageQuota | Sort-Object StorageUsageCurrent -Descending | Format-Table -AutoSize
  • In your Lab Journal: which user has the most OneDrive storage used? What percentage of their quota is consumed? At what usage level would you start proactively reaching out to a user about storage?
  • Stretch: set a per-user quota override via PowerShell: Set-SPOSite -Identity [OneDrive URL] -StorageQuota 51200 (51200 MB = 50 GB)
⭐ Bonus B — Known Folder Move policy design
  • In your Lab Journal, design the KFM deployment plan for Lakeview Logistics. Address: which folders should be redirected (Desktop, Documents, Pictures — justify each), how would you roll it out without causing user disruption, what happens to existing files in those folders when KFM is enabled
  • Research: navigate to learn.microsoft.com and find the Group Policy settings required to enable KFM. Record the two key policy names and their registry paths
  • In your Lab Journal: why is KFM more reliable than asking users to manually save files to OneDrive — what specific failure modes does it prevent?
1:50 – 2:00 Debrief · 10 min

Reflection & preview

Learning outcomes — by end of Day 4, students can…

Describe OneDrive architectureExplain that OneDrive is a personal SharePoint site collection and how it relates to the SharePoint platform
Configure storage quotasSet a tenant-wide default quota and apply per-user overrides
Set retention policyConfigure the preservation period for departed user OneDrives
Configure departure notificationsEnable manager notification and secondary owner access for deleted user accounts
Explain KFMDescribe what Known Folder Move does, why it matters, and how it is deployed
Grant admin OneDrive accessAdd a site admin to a personal OneDrive site via the SharePoint admin centre Active sites list

What you need ready

SharePoint Online PowerShell module OneDrive admin centre accessible All 10 user accounts active (for OneDrive discovery) Slide deck: OneDrive lifecycle diagram Lab 4-D step sheet
Day 5 →Week 4 Overview