mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-09 01:25:04 +01:00
56 lines
1.7 KiB
PowerShell
Executable File
56 lines
1.7 KiB
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Checks symlinks in a folder
|
|
.DESCRIPTION
|
|
This PowerShell script checks every symbolic link in a folder (including subfolders).
|
|
It returns the number of broken symlinks as exit value.
|
|
.PARAMETER folder
|
|
Specifies the path to the folder
|
|
.EXAMPLE
|
|
PS> ./check-symlinks C:\Users
|
|
⏳ Checking symlinks at 📂C:\Users including subfolders...
|
|
✔️ Found 0 broken symlinks at 📂C:\Users in 60 sec
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
param([string]$Folder = "")
|
|
|
|
try {
|
|
if ($Folder -eq "" ) { $Folder = read-host "Enter the path to the folder" }
|
|
|
|
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
|
$FullPath = Resolve-Path "$Folder"
|
|
"⏳ Checking symlinks at 📂$FullPath including subfolders..."
|
|
|
|
[int]$NumTotal = [int]$NumBroken = 0
|
|
Get-ChildItem $FullPath -recurse | Where { $_.Attributes -match "ReparsePoint" } | ForEach-Object {
|
|
$Symlink = $_.FullName
|
|
$Target = ($_ | Select-Object -ExpandProperty Target -ErrorAction Ignore)
|
|
if ($Target) {
|
|
$path = $_.FullName + "\..\" + ($_ | Select-Object -ExpandProperty Target)
|
|
$item = Get-Item $path -ErrorAction Ignore
|
|
if (!$item) {
|
|
$NumBroken++
|
|
"Symlink $Symlink to: $Target seems broken (#$NumBroken)"
|
|
}
|
|
}
|
|
$NumTotal++
|
|
}
|
|
|
|
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
|
if ($NumTotal -eq 0) {
|
|
"✔️ No symlink found at 📂$FullPath in $Elapsed sec"
|
|
} elseif ($NumBroken -eq 1) {
|
|
"✔️ Found $NumBroken broken symlink at 📂$FullPath in $Elapsed sec"
|
|
} else {
|
|
"✔️ Found $NumBroken broken symlinks at 📂$FullPath in $Elapsed sec"
|
|
}
|
|
exit $NumBroken
|
|
} catch {
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|