Block Everything (Steam + All Games)
The simplest approach — block the Steam process:
- Add a Plan → in the Applications step, choose Block Some Apps
- Add
steam.exe
- This blocks the Steam client and prevents launching any games through it
Block Games but Allow Steam Client
To keep access to the Steam store and chat but block actual gameplay:
- Use RegEx with a title-based match
- Add a window title entry with RegEx:
\b(game1|game2|game3)\b
- 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:
This catches any executable running from the Steam games directory, regardless of the game.
This approach also works for Epic Games (Epic Games\\) or any other launcher that installs games in a common directory.