Skip to content

Commit

Permalink
Add 2024/start-syncthing-background-windows.md
Browse files Browse the repository at this point in the history
  • Loading branch information
smack0007 authored Apr 28, 2024
1 parent 15457a7 commit 8e169cb
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/blog/2024/start-syncthing-background-windows.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
Title: Start Syncthing in the Background on Windows
Subtitle:
Date: 2024-04-28
Tags: syncthing, windows
---

Just a quick tip for myself (and anyone who is reading this) for the future. To start [syncthing](https://syncthing.net/) in
the background on Windows open up the startup apps folder via the run command (Win+R) with `shell:startup` amd then create
the following shortcut:

```shell
powershell.exe -c "Start-Process -FilePath 'syncthing' -ArgumentList '--no-browser' -WindowStyle Hidden"
```

This starts syncthing in the background after a short lived popup opens. `--no-console` doesn't seem to work for whatever reason.

0 comments on commit 8e169cb

Please sign in to comment.