ALL MEMOS Download .docx

When python resolves to C:\Users\Harnoor\AppData\Local\Microsoft\WindowsApps\python.exe (the Microsoft Store stub), running scripts via Bash background tasks produces zero stdout/stderr and the process hangs until killed. This blocked the SES send for newsletter #016 (2026-05-04) until I switched executables.

The real interpreter: C:\Users\Harnoor\AppData\Local\Python\bin\python.exe — Python 3.14.2, with boto3, requests, etc. installed.

Why: The WindowsApps directory is a redirector that opens the Store on first use. In headless/subprocess contexts there's no UI to redirect to, so it just blocks. python --version returns synchronously because that path triggers a fast-fail, but actual script execution stalls indefinitely.

How to apply: