You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
nssm
About this tag
NSSM, the Non-Sucking Service Manager, is a lightweight Windows service wrapper that lets you run arbitrary executables, scripts, or commands as Windows services. It is commonly used to keep background tasks alive, logged, and automatically restarted, even though its last widely published stable build dates back to 2014. On WindowsForum.com, users discuss wrapping Python scripts and other tools with NSSM to create resilient automation servers or run applications under the local system account. Topics include handling access permissions for Microsoft Store apps when using NSSM, and comparing NSSM to other service wrappers for reliability and ease of use.
I converted a regular Windows desktop into a small, resilient automation server by wrapping long‑running tools and scripts with the Non‑Sucking Service Manager (NSSM), and the result was a surprisingly robust, low‑effort way to keep background tasks alive, logged, and automatically restarted —...
Hi!
Short version
How to give the local system account access to an app from the MS Store installed by another user ?
Long version
I'm using Python 3.8 from the MS Store and want to execute it as a Windows service running under the local system account (for sake of completeness I developed a...