Skip to content

Instantly share code, notes, and snippets.

@vimagick
Last active June 22, 2026 23:28
Show Gist options
  • Select an option

  • Save vimagick/9659992044ecced84f19ca434d4d31db to your computer and use it in GitHub Desktop.

Select an option

Save vimagick/9659992044ecced84f19ca434d4d31db to your computer and use it in GitHub Desktop.
Windows Daemon
$ cd "C:\Program Files\SnowLuma"

# method A
$ mklink /d current v1.10.2

# method B
$ powershell -c "New-Item -ItemType SymbolicLink -Path current -Target v1.10.2"

$ dir
Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
d----l         6/23/2026   7:02 AM                current
d-----         6/23/2026   7:05 AM                v1.10.2

$ wsw install -n snowluma -d --cmd "node index.mjs" --working-dir "C:\Program Files\SnowLuma\current"

$ wsw list
+--------------+---------+
| Service Name | Status  |
+--------------+---------+
| snowluma     | Running |
+--------------+---------+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment