From d8ebaae19019dcf08db2af44de483dc1a2f91836 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Sat, 17 May 2025 14:19:04 +0200 Subject: [PATCH] Updated install-syncthing.ps1 --- scripts/install-syncthing.ps1 | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/scripts/install-syncthing.ps1 b/scripts/install-syncthing.ps1 index e2bc7410..af54c8bc 100644 --- a/scripts/install-syncthing.ps1 +++ b/scripts/install-syncthing.ps1 @@ -2,9 +2,12 @@ .SYNOPSIS Installs Syncthing .DESCRIPTION - This PowerShell scripts installs Syncthing on your computer. + This PowerShell script installs Syncthing on your computer. + Syncthing is a continuous file synchronization program. See https://syncthing.net for details. .EXAMPLE PS> ./install-syncthing.ps1 + ⏳ Installing Syncthing... + ... .LINK Author: Markus Fleschutz | License: CC0 .NOTES @@ -21,7 +24,9 @@ try { & winget install --id Syncthing.Syncthing } [int]$elapsed = $stopWatch.Elapsed.TotalSeconds - "✅ Syncthing installed successfully in $($elapsed)s. Visit 127.0.0.1:8384 for setup and see the ~/Sync folder" + "✅ Syncthing installed successfully in $($elapsed)s." + " Adming GUI at: http://127.0.0.1:8384 (use )" + " Your sync folder is at: ~/Sync/" exit 0 # success } catch { "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"