File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -252,17 +252,17 @@ by a sysadmin who knows enough to understand the security implications.
252
252
#. Start the service via ``sc start syncthing `` in the Command Prompt.
253
253
#. Connect to the Syncthing UI, enable HTTPS, and set a secure username and password.
254
254
255
- For Advanced Users
256
- ^^^^^^^^^^^^^^^^^^
255
+ CLI and Native Solutions for Terminal Users
256
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
257
257
258
- It's possible to run Windows Task Scheduler CLI API with a command such as
258
+ It's possible to run Windows Task Scheduler native CLI API with a command such as
259
259
``schtasks /create /sc ONLOGON /tn Syncthing /tr "<program-path> [--no-console --no-browser]" ``.
260
- The operation requires elevated privileges. Preventing the pop-up console that hides after
261
- some delay is possible wrapping the executable with a ``PowerShell `` script.
260
+ The operation requires elevated privileges. If you're facing issues when using `` --no-console ``, you can
261
+ try wrapping the executable with a ``PowerShell `` script.
262
262
263
263
``script.ps1 ``::
264
264
265
- Start-Process "<path to syncthing>.exe" -WindowStyle Hidden
265
+ Start-Process [-FilePath] "<path to syncthing>.exe" [-ArgumentList "..."] -WindowStyle Hidden
266
266
267
267
Then run as admin::
268
268
You can’t perform that action at this time.
0 commit comments