Uninstalling Steam isn’t a routine Windows uninstall. Hit the remove button and you might kiss your entire game library goodbye — hundreds of gigabytes of downloads, gone. That’s the reality uncovered in a detailed Technobezz guide published July 29, and it’s a quirk of Steam’s installer that catches even seasoned Windows users off guard.
The culprit: Steam stores all installed games inside its own program folder — C:\\Program Files (x86)\\Steam\\steamapps — and the official uninstaller wipes that entire directory. No prompt to keep your games, no graceful backup, just deletion. Unless you intervene first.
A single click can erase terabytes — here’s why
When you uninstall Steam the standard way on Windows 10 or Windows 11, the bundled uninstaller doesn’t ask which parts to keep. By default, it removes every file in the Steam folder, including the steamapps subdirectory where every downloaded game lives. For a typical user with a large library, that’s anywhere from a few dozen gigabytes to well over a terabyte of data — instantly gone.
The Technobezz guide, drawing from Valve’s own support documentation, confirms this behavior isn’t a bug. It’s been the norm for years across all Windows versions. The same guide spells out that macOS treats game files similarly: the SteamApps folder inside ~/Library/Application Support/Steam gets thrown out unless you manually save it. On Linux, cleanup depends entirely on the package manager used and whether you explicitly delete data directories.
Even the command-line crowd gets no special protection. Microsoft’s own winget tool can uninstall Steam with winget uninstall --name Steam, but it doesn’t spare the steamapps folder. Winget simply invokes the same Windows installer behind the scenes. The only difference is you never see the graphical prompt that might momentarily make you hesitate.
What this means for your game saves and future reinstalls
For everyday users, the immediate risk is losing not just game installations but also precious save data. While many modern titles sync progress through Steam Cloud, plenty of older games or indie gems don’t. Their saves often live outside the Steam directory — commonly in Documents\\My Games or developer-specific folders — but the steamapps wipe can still cost you hours of re-downloading and reconfiguring. If your internet connection is slow or capped, that’s a real penalty.
Power users and system administrators face a different headache: managing uninstalls across multiple machines. If you deploy Steam via enterprise tools or custom scripts, you need to ensure those scripts first relocate steamapps to a safe location, then handle the uninstall, and finally move the folder back after a fresh install. Skipping this step means wiping potentially terabytes of company-sanctioned game libraries on shared machines.
Cross-platform households add another layer. A Steam Deck reset or a macOS cleanup might unintentionally nuke games you intended to keep. The guide clarifies that Steam Deck’s factory reset erases everything — games, saves, and the OS itself — while a typical macOS drag-to-Trash leaves behind support files that still consume disk space unless you dig into ~/Library.
The road to this point: Steam’s long-standing uninstall behavior
Steam first launched in 2003, and from the start, its client bundled games into the same installation tree. At the time, game downloads were much smaller and external storage was less common, so a nuclear uninstall didn’t seem catastrophic. As game sizes ballooned and libraries expanded, the community began sharing workarounds: manually copying the steamapps folder before hitting uninstall, or even hex-editing the installer to change its behavior.
Valve has gradually added niceties like the ability to move individual games between drives and cloud save support, but the uninstaller remains stubbornly dumb. Official support articles still recommend the same workaround: move the folder out first. The July Technobezz piece is just the latest to shine a light on a problem that’s been festering for over a decade. With the rise of the Steam Deck and cross-platform play, the gap between user expectations and the actual uninstall logic has never been wider.
What to do now: A platform-by-platform guide
Windows: Save steamapps first, then choose your uninstall path
Before anything else, quit Steam from the system tray. Then copy the entire C:\\Program Files (x86)\\Steam\\steamapps folder to another drive, an external disk, or a network location. This is your insurance.
Now decide how you want to uninstall:
- The standard route: Open Settings > Apps > Installed apps. Locate Steam, click the three-dot menu, and select Uninstall. When the Steam uninstaller appears, choose Automatic, then click Next and Finish. The uninstaller will delete the now-empty (or soon-to-be-empty) Steam folder.
- Start menu or Control Panel: Right-click the Steam shortcut in Start > All apps and pick Uninstall. The same uninstaller launches. Alternatively, open Control Panel > Programs and Features, right-click Steam, and choose Uninstall.
- For command-line fans: Open Terminal or Command Prompt. Run
winget list Steamto confirm the package name and ID. Then executewinget uninstall --name Steam. If you’re prompted about source agreements, add--source wingetto narrow the search. Note that even with--silent, winget still triggers the same uninstaller; it just suppresses the interface.
When the uninstaller breaks: Repair before you reach for registry cleaners
Sometimes the Steam uninstaller refuses to run — missing files, corrupt installation, or a botched prior removal can break it. Valve’s first recommendation: download the Steam installer from the official website and run it to repair the installation, then attempt uninstall again through Settings. Do not rely on third-party registry cleaners or “uninstaller” tools; they often cause more harm than good.
If repair fails and you absolutely must nuke everything manually, follow this sequence with extreme caution:
- Quit Steam and copy
steamappsout as explained. - Delete all files and folders inside
C:\\Program Files (x86)\\Steam. - Open Registry Editor (press Windows + R, type
regedit, hit OK). - On 64-bit Windows, delete
HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Valve\\Steam. On 32-bit, deleteHKEY_LOCAL_MACHINE\\SOFTWARE\\Valve\\Steam. - Also delete
HKEY_CURRENT_USER\\Software\\Valve\\SteamandHKEY_CURRENT_USER\\Software\\Valve\\SteamService. - Close Registry Editor.
Warning: Deleting the wrong registry key can destabilize Windows or break other applications. Only attempt this if you’re comfortable navigating the registry.
macOS: Don’t just drag to Trash
Quit Steam (Steam > Quit Steam). Go to Applications, drag Steam to the Trash. But that’s not enough — the support files still linger. Open Finder, hold the Option key, click Go > Library, then navigate to Application Support/Steam. To keep your games, delete everything in that folder except SteamApps. To remove all Steam data, delete the entire Steam folder. Finally, empty the Trash.
Linux: The command depends on how you installed Steam
Linux users must match the removal command to the original installation method. Mistaking Debian’s steam-installer for Valve’s steam-launcher or a Flatpak install can leave files behind — or fail outright.
- Debian/Ubuntu (distro package):
sudo apt remove steam-installer(thesteampackage is now transitional). Addpurgeinstead ofremoveto also delete configuration files. Follow up withsudo apt autoremoveto clean dependencies. - Debian/Ubuntu (Valve’s .deb):
sudo apt remove steam-launcher. - Fedora/DNF-based:
sudo dnf remove steam. - Flatpak:
flatpak uninstall com.valvesoftware.Steam. To also remove app data, add--delete-data. Then runflatpak uninstall --unusedto drop orphaned runtimes. - Snap:
sudo snap remove steam.
Remember: none of these commands touch the ~/.steam or ~/.local/share/Steam directories where game files and configurations reside on Linux. If you want a full cleanup, delete those directories manually after uninstalling — but only after backing up whichever games you want to keep.
Steam Deck and mobile: Different beasts entirely
On Steam Deck, Steam is embedded in SteamOS. A simple uninstall isn’t possible — the closest equivalent is a factory reset: press the Steam button, go to Settings > System > Factory Reset. That wipes all user data, installed games, and applications but leaves the OS intact. For deeper issues, boot from Valve’s recovery media and choose “Re-image Device,” which also re-installs SteamOS.
On Android, uninstall via Settings > Apps or the Google Play Store. Avoid archiving the app (available on Android 15) if you want a clean removal — archiving keeps the icon and user data. iOS/iPadOS users can press and hold the Steam icon, choose Remove App, then Delete App. If the delete option is missing, check Screen Time restrictions or MDM profiles.
Account deletion is separate and permanent: start a request via Steam Support, provide proof of ownership, then wait through a 30-day restricted queue. After that, your licenses, wallet funds, inventory, and profile are gone for good. It does not uninstall the client from any device.
Outlook: Will Valve ever add a “keep my games” checkbox?
Valve hasn’t signaled any change, and given the years of community requests, a built-in solution seems unlikely soon. The Steam Deck’s factory reset workflow proves Valve can design a guided, destructive process when needed — but on desktop, the philosophy remains “you’re on your own.” For now, the steamapps folder remains the single most important thing to rescue before you click that uninstall button. Until Valve steps in, a manual copy is the only reliable insurance policy.