Joplin desktop closes when I close my terminal session (tab)

I'm using Windows Terminal with PowerShell to start Joplin desktop and when I close the tab it also close down Joplin. Not sure if this was intended to work this way.

Joplin 2.2.1 (prod, win32)

Sync Version: 2
Profile Version: 39
Keychain Supported: Yes

Revision: 4e0ff1f

Computers 101.

When you stop the process that runs another the second process will be killed too.
If you start it on the command line you have to start it in the background without being associated with that terminal.

In Posix systems this is done with:

nohup COMMAND &

No idea how this is done with Windows. I'm sure some Windows experts will chime in.

I see. On Windows, Joplin seems to be the anomaly here.

Start-Job { Joplin } | Out-Null

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.