It’s 3:12 PM. You just unboxed a new laptop labeled 'Windows 10 Home'. Your boss emails: 'Can you pull last quarter’s sales figures into Excel and send me the summary?' You click the Start menu, type 'Excel', and—nothing. No icon. No error. Just silence. You open Settings, search for 'Office', and get three conflicting forum posts. You’re not missing an app. You’re missing context.
The Setup
You’ve been handed a folder called Q3_Software_Inventory with five spreadsheets from different departments. One is named win10_license_check.xlsx. It contains raw device audit data—no formatting, inconsistent headers, and mixed install statuses. Here’s what’s in A1:E10:
| Device ID | Model | OS Version | Office Installed? | Notes |
|---|---|---|---|---|
| D-7721 | Dell Inspiron 5490 | Windows 10 Pro 22H2 | Yes | Preloaded trial (expired) |
| D-7722 | HP EliteBook 840 G7 | Windows 10 Home | No | Blank install — no Office |
| D-7723 | Lenovo ThinkPad T14 | Windows 10 Pro 21H1 | Yes | Microsoft 365 subscription active |
| D-7724 | Acer Aspire 5 | Windows 10 Home | Partial | Only Word Online accessible |
| D-7725 | Surface Laptop 3 | Windows 10 Pro 22H2 | Yes | One-month trial activated |
| D-7726 | ASUS VivoBook S15 | Windows 10 Home | No | OEM did not bundle Office |
| D-7727 | Microsoft Surface Go 2 | Windows 10 Home | Yes | Free 1-month trial preinstalled |
| D-7728 | Dell XPS 13 | Windows 10 Pro 22H2 | Yes | M365 E3 assigned via Azure AD |
The Challenge
You need to answer one question definitively: Does Windows 10 include Word and Excel? But this isn’t a yes/no quiz—it’s a licensing puzzle wrapped in marketing language. Microsoft’s site says 'Get Office' on Windows 10 pages. Retail boxes say 'Includes Office'. Your IT ticket says 'No license found'. Confusion isn’t accidental. It’s baked in.
The real work starts when you realize that 'included' means wildly different things depending on: hardware vendor (Dell vs. Microsoft), edition (Home vs. Pro), region (some EU bundles exclude Office), and even purchase date (pre-2020 vs. post-2022 OEM contracts). And don’t forget the web-only trap: many 'Office' icons launch Word Online, not the desktop app—and that only works with an internet connection and a Microsoft account.
Worse? The Office Installed? column in your dataset is unreliable. 'Yes' could mean full desktop apps, a 30-day trial, or just the web launcher. You can’t trust labels—you need evidence.
Walking Through It
We’ll validate each row using three checks—no guesswork. Open win10_license_check.xlsx, go to Sheet1, and start at A2.
Step 1: Check for desktop executables
Press Alt+F11 to open VBA editor (don’t write code—just close it). Then press Win+R, type shell:appsFolder, and hit Enter. In that folder, look for Microsoft.Office.Desktop. If it’s missing, desktop Word/Excel aren’t installed—even if the Start menu shows an icon. (Trust me, I learned this the hard way after reinstalling Windows twice.)
Step 2: Verify activation status
In Excel, go to File → Account. Look at the 'Product Information' section. If it says 'Product Activated' with 'Microsoft 365 Apps' or 'Office LTSC', you’re good. If it says 'Unlicensed' or 'Try or Buy', it’s not included—it’s trial or web-only.
Step 3: Cross-check registry (for IT folks)
Press Win+R, type regedit, then navigate to:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\ClickToRun\Configuration
If ClientVersion exists and reads 16.0.xxxxx, desktop apps are present. If the key is missing or empty, only web apps exist.
Apply those checks to rows A2–A9. Update column D and E accordingly. For example, row A4 (Acer Aspire 5) changes from Partial → No (Web only), and E4 updates to Launches Word Online via Edge — no offline editing.
Here’s the corrected dataset after validation:
| Device ID | Model | OS Version | Office Installed? | Notes |
|---|---|---|---|---|
| D-7721 | Dell Inspiron 5490 | Windows 10 Pro 22H2 | No (Trial expired) | Desktop apps present but unlicensed — requires subscription |
| D-7722 | HP EliteBook 840 G7 | Windows 10 Home | No | No Office apps detected — only web access via browser |
| D-7723 | Lenovo ThinkPad T14 | Windows 10 Pro 21H1 | Yes | M365 E3 licensed — full desktop apps active |
| D-7724 | Acer Aspire 5 | Windows 10 Home | No (Web only) | Start menu icon opens Word Online — no .exe found |
| D-7725 | Surface Laptop 3 | Windows 10 Pro 22H2 | No (Trial active) | Desktop apps installed — expires in 12 days |
| D-7726 | ASUS VivoBook S15 | Windows 10 Home | No | Clean OS install — zero Office components |
| D-7727 | Microsoft Surface Go 2 | Windows 10 Home | No (Trial active) | Preinstalled trial — same as D-7725 |
| D-7728 | Dell XPS 13 | Windows 10 Pro 22H2 | Yes | Assigned M365 E3 — auto-activated via Azure AD |
The Result
After validation, only 2 of 8 devices have fully licensed, functional Word and Excel desktop apps. The rest either lack them entirely, run trials, or depend on internet-connected web versions. This table now answers your manager’s question—not with marketing fluff, but with verified, actionable data.
| Status | Count | Notes |
|---|---|---|
| Fully Licensed (Desktop) | 2 | D-7723, D-7728 — M365 subscriptions assigned |
| Trial Active (Desktop) | 2 | D-7725, D-7727 — 30-day clock running |
| Trial Expired (Desktop) | 1 | D-7721 — apps installed but blocked |
| Web Only | 2 | D-7724, D-7722 — no desktop binaries |
| None Detected | 1 | D-7726 — clean Windows install |
What Could Go Wrong
Three mistakes I’ve seen derail this verification—each with real consequences:
- Mistake #1: Assuming 'Office' in Start menu = desktop app
You see a blue Word icon, click it—and get a browser tab. That’s Word Online, not Word.exe. The icon is misleading. Always checkshell:appsFolderor Task Manager (look forWINWORD.EXEunder Details tab). - Mistake #2: Using File → Account on a shared PC
If someone else signed in first, Excel shows their license—not yours. Sign out completely, restart Excel, then check. Or better: useregedit—it’s machine-level, not user-level. - Mistake #3: Relying on 'Windows Features' dialog
Some admins enable 'Windows Subsystem for Linux' and assume Office is bundled there. It’s not. Office has zero dependency on optional Windows features. That dialog is irrelevant—and a classic red herring.
Here’s your quick-reference checklist before answering the question again:
| Check | Where to Look | What ‘Yes’ Means |
|---|---|---|
| Desktop EXEs present | File Explorer → C:\Program Files\Microsoft Office\root\Office16\ | WINWORD.EXE and EXCEL.EXE exist |
| License active | Excel → File → Account → Product Information | Shows 'Product Activated' + version number |
| No web fallback | Double-click .docx file → opens in desktop app (not browser) | Default handler is WINWORD.EXE, not Edge/Chrome |