> ## Documentation Index
> Fetch the complete documentation index at: https://docs.focusme.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Block All Steam Games

> Block Steam games while optionally keeping the Steam client accessible.

## Block Everything (Steam + All Games)

The simplest approach — block the Steam process:

1. **Add a Plan** → in the Applications step, choose **Block Some Apps**
2. Add `steam.exe`
3. This blocks the Steam client and prevents launching any games through it

## Block Games but Allow Steam Client

<Frame caption="Blocking individual game processes while keeping Steam client accessible">
  <img src="https://mintcdn.com/focusme/f2B5B4S6h27RCqMA/images/guide-block-steam-games.png?fit=max&auto=format&n=f2B5B4S6h27RCqMA&q=85&s=e432b04c1139b5f50fdfbcfc985200cd" width="1002" height="717" data-path="images/guide-block-steam-games.png" />
</Frame>

To keep access to the Steam store and chat but block actual gameplay:

1. Use [RegEx](/advanced/regex) with a title-based match
2. Add a **window title** entry with RegEx: `\b(game1|game2|game3)\b`
3. Replace with the actual names of games you want to block

Alternatively, add each game's process name individually using the Helper Tool while each game is running.

## Block by Steam Library Path

If all your Steam games are installed in one folder (e.g., `C:\Program Files (x86)\Steam\steamapps\common\`), you can use **process path** matching with RegEx:

```
steamapps\\common
```

This catches any executable running from the Steam games directory, regardless of the game.

<Tip>This approach also works for Epic Games (`Epic Games\\`) or any other launcher that installs games in a common directory.</Tip>
