Here's something that should bother every developer who works with 3D files: Microsoft is permanently removing 3D Viewer from the Microsoft Store on July 1, 2026.
Their official replacement suggestion? Babylon.js Sandbox. A browser-based viewer that doesn't support STL files — the single most common format in 3D printing, CNC machining, and CAD export workflows.
Let that sink in. The world's largest OS vendor is dropping 3D file support and pointing users to a tool that can't open the most popular 3D format.
The Full Death Timeline
This isn't a one-off. Microsoft has systematically killed every 3D tool they built:
2017: "3D for Everyone!" — Creators Update launches
2023: Windows Mixed Reality deprecated
2024: HoloLens 2 production stopped
2024: Paint 3D removed from Store (November 4)
2024: FBX support permanently disabled in 3D Viewer (CVE-2024-20677)
2026: 3D Viewer deprecated (February)
2026: 3D Viewer removed from Store (July 1) ← YOU ARE HERE
Nine years from "3D for Everyone" to "3D for Nobody."
Why Developers Should Care
If you build anything that outputs 3D files — CAD tools, slicers, generative design, AI mesh generation, game asset pipelines — your Windows users just lost their default preview tool.
"Just use Blender" is the wrong answer. Blender is a 200MB professional content creation suite. Your user doesn't want to install Blender to preview an STL. They want to double-click and see the model.
The Browser-Based Alternative
I've switched to GeometryViewer for day-to-day 3D file preview. Here's why it works for my workflow:
Format coverage that actually matters:
- STL (binary + ASCII), OBJ, GLB/GLTF, 3MF, FBX, PLY, STEP, DAE
- Drag and drop — no account, no install
- Works offline as a PWA (install once, works without internet)
Developer-friendly features:
- Embeddable via
<iframe>— one line to add a 3D viewer to any webpage - Shareable URLs — send a model preview link, recipient sees it instantly
- Measurement tools, cross-sections, material simulation
- No WebGL server-side rendering — everything runs client-side
The STL gap filled:
- Proper normal handling (no inverted faces on manifold models)
- Material preview that shows what a 3D print will actually look like
- Handles large meshes without choking (tested with 50M+ triangle scans)
What Happens to Existing Installs?
Microsoft clarified: existing 3D Viewer installations won't be auto-deleted. The app keeps working. But:
- No security patches after July 1
- Can't reinstall after a clean Windows install or new PC
- The FBX parser already has a known RCE vulnerability (CVE-2024-20677, CVSS 7.8) that Microsoft "fixed" by disabling FBX entirely
Running unpatched software that already had an RCE is not a plan. It's a liability.
If You're Building 3D Tools
Consider this the canary in the coal mine. Microsoft is not coming back to desktop 3D. Their 3D strategy is now:
- Azure Remote Rendering (enterprise, cloud-based)
- Partnership with Meta (Xbox branding on Quest hardware)
- Copilot (AI-generated 3D via text prompts — not file viewing)
Desktop 3D file viewing is officially an open-source problem now. If your app generates 3D output and your users are on Windows, you need to either:
- Bundle your own viewer
- Point them to a browser-based solution like GeometryViewer
- Or accept that they'll have no way to preview your files
The era of "Windows handles 3D files natively" ended in February 2026. Plan accordingly.












