2024-11-08 12:38:20 +01:00
|
|
|
The *check-xml-files.ps1* Script
|
|
|
|
===========================
|
2023-12-07 20:24:45 +01:00
|
|
|
|
2024-03-27 17:36:59 +01:00
|
|
|
This PowerShell script verifies any XML file (with suffix .xml) in the given directory tree for validity.
|
2023-12-07 20:24:45 +01:00
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
```powershell
|
2024-11-08 12:35:11 +01:00
|
|
|
/home/markus/Repos/PowerShell/scripts/check-xml-files.ps1 [[-path] <String>] [<CommonParameters>]
|
2023-12-07 20:24:45 +01:00
|
|
|
|
|
|
|
-path <String>
|
|
|
|
Specifies the path to the directory tree (current working dir by default)
|
|
|
|
|
|
|
|
Required? false
|
|
|
|
Position? 1
|
|
|
|
Default value "$PWD"
|
|
|
|
Accept pipeline input? false
|
|
|
|
Accept wildcard characters? false
|
|
|
|
|
|
|
|
[<CommonParameters>]
|
|
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
|
|
```
|
|
|
|
|
|
|
|
Example
|
|
|
|
-------
|
|
|
|
```powershell
|
|
|
|
PS> ./check-xml-files.ps1 C:\Windows
|
|
|
|
...
|
2024-11-08 12:35:11 +01:00
|
|
|
✅ Checked 3387 XML files (2462 invalid, 925 valid) within 📂C:\Windows in 116 sec
|
2023-12-07 20:24:45 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
Notes
|
|
|
|
-----
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
|
|
|
Related Links
|
|
|
|
-------------
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
|
|
|
Script Content
|
|
|
|
--------------
|
|
|
|
```powershell
|
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
2024-01-25 13:31:10 +01:00
|
|
|
Checks all XML files in a directory tree
|
2023-12-07 20:24:45 +01:00
|
|
|
.DESCRIPTION
|
2024-03-27 17:36:59 +01:00
|
|
|
This PowerShell script verifies any XML file (with suffix .xml) in the given directory tree for validity.
|
2023-12-07 20:24:45 +01:00
|
|
|
.PARAMETER path
|
|
|
|
Specifies the path to the directory tree (current working dir by default)
|
|
|
|
.EXAMPLE
|
|
|
|
PS> ./check-xml-files.ps1 C:\Windows
|
|
|
|
...
|
2024-11-08 12:35:11 +01:00
|
|
|
✅ Checked 3387 XML files (2462 invalid, 925 valid) within 📂C:\Windows in 116 sec
|
2023-12-07 20:24:45 +01:00
|
|
|
.LINK
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
#>
|
|
|
|
|
|
|
|
param([string]$path = "$PWD")
|
|
|
|
|
|
|
|
try {
|
|
|
|
$stopWatch = [system.diagnostics.stopwatch]::startNew()
|
|
|
|
$path = Resolve-Path "$path"
|
2024-03-27 17:36:59 +01:00
|
|
|
Write-Progress "Scanning any XML file within $path..."
|
|
|
|
[int]$valid = [int]$invalid = 0
|
2023-12-07 20:24:45 +01:00
|
|
|
|
2024-01-25 13:31:10 +01:00
|
|
|
Get-ChildItem -path "$path" -attributes !Directory -recurse -force | Where-Object { $_.Name -like "*.xml" } | Foreach-Object {
|
2023-12-07 20:24:45 +01:00
|
|
|
& $PSScriptRoot/check-xml-file.ps1 "$($_.FullName)"
|
2024-03-27 17:36:59 +01:00
|
|
|
if ($lastExitCode -eq 0) { $valid++ } else { $invalid++ }
|
2023-12-07 20:24:45 +01:00
|
|
|
}
|
|
|
|
Write-Progress -completed "Done."
|
|
|
|
|
2024-03-27 17:36:59 +01:00
|
|
|
[int]$total = $valid + $invalid
|
2023-12-07 20:24:45 +01:00
|
|
|
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
|
2024-11-08 12:35:11 +01:00
|
|
|
"✅ Checked $total XML files ($invalid invalid, $valid valid) within 📂$path in $elapsed sec"
|
2023-12-07 20:24:45 +01:00
|
|
|
exit 0 # success
|
|
|
|
} catch {
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2024-11-20 11:52:20 +01:00
|
|
|
*(generated by convert-ps2md.ps1 as of 11/20/2024 11:51:52)*
|