Skip to content

Handing back a Windows work laptop: what to take and what not to touch

Personal files, licences and account sessions, and the parts that belong to IT. A clear order for both sides.

6 min read

A work laptop usually goes back to an IT team who will reimage it, which changes what you should do. Your job is to take what is yours and remove your personal accounts. Wiping it yourself is often wrong, because it can remove the management enrolment they need.

Ask first

If the machine is managed through Intune or a similar system, IT may want it returned as it is. Resetting a managed device incorrectly can leave it in a state that takes longer to sort out than an untouched one, and that is a genuinely unhelpful parting gift.

Find what is yours

Get-ChildItem "$env:USERPROFILE" -Directory -Force -EA SilentlyContinue | ForEach-Object {
  $s = (Get-ChildItem $_.FullName -Recurse -Force -File -EA SilentlyContinue | Measure-Object Length -Sum).Sum
  [PSCustomObject]@{ GB = [math]::Round($s/1GB,2); Folder = $_.Name }
} | Sort-Object GB -Descending | Select-Object -First 20

Two categories get forgotten every time: files inside application folders, such as note databases, message history and the Outlook OST, and anything in a personal cloud account that is already online only and needs no action.

Sign out of personal accounts

  1. Personal Microsoft account, if you added one.
  2. Browser profiles signed into personal accounts, and any password manager.
  3. Messaging apps, which keep local history. Unlink the desktop from your phone.
  4. Any personal licence tied to the machine, deauthorised so you can use it elsewhere.

What to leave alone

ItemWhy
Management enrolmentIT needs it, and removing it creates work
Company software and licencesNot yours to deauthorise
BitLocker settingsChanging them can trigger a full re-encrypt
The local administrator accountRemoving it can lock everyone out

The personal data that is easy to miss

Browser profiles signed into personal accounts, message history in chat apps, and anything saved to the desktop three jobs ago. All of it lives in AppData, which Explorer hides by default.

Common questions

Should I wipe a work laptop before returning it?

Ask IT first. Many managed machines are meant to be returned as they are, and resetting one incorrectly can remove management enrolment, which takes longer to fix than an untouched machine.

What personal data is easiest to forget on a work PC?

Message history and note databases inside AppData, browser profiles signed into personal accounts, and mail archives such as PST files, none of which Explorer shows by default.

What should I sign out of before handing back a laptop?

Personal Microsoft accounts, browser profiles and password managers, messaging apps linked to your phone, and any software licensed to you personally.

Can I remove the management software from a company laptop?

You should not. It is what IT uses to manage and reimage the machine, and removing it creates work for them without benefiting you.

Read next