From 93ae529ca3f6bf62231c2ab015096d5b0b2be3bd Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Mon, 4 Aug 2025 09:25:06 +0200 Subject: [PATCH] Updated check-symlinks.ps1 --- scripts/check-symlinks.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/check-symlinks.ps1 b/scripts/check-symlinks.ps1 index f6c7dea2..5de163de 100755 --- a/scripts/check-symlinks.ps1 +++ b/scripts/check-symlinks.ps1 @@ -6,9 +6,9 @@ .PARAMETER path Specifies the file path to the directory tree .EXAMPLE - PS> ./check-symlinks D:\ - ⏳ Checking symlinks at 'D:\'... (please wait) - ✅ Found 0 broken symlinks at 📂D:\ in 60s. + PS> ./check-symlinks C:\Windows + ⏳ Checking symlinks at 'C:\Windows'... (please wait) + ✅ No symlinks at C:\Windows (took 102s). .LINK https://github.com/fleschutz/PowerShell .NOTES @@ -18,7 +18,7 @@ param([string]$path = "") try { - if ($path -eq "" ) { $path = Read-Host "Enter the path to the folder" } + if ($path -eq "" ) { $path = Read-Host "Enter the file path to the directory tree" } $stopWatch = [system.diagnostics.stopwatch]::startNew() $fullPath = Resolve-Path "$path"