mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-09 01:25:04 +01:00
28 lines
829 B
PowerShell
Executable File
28 lines
829 B
PowerShell
Executable File
<#
|
|
.SYNTAX list-os-releases.ps1
|
|
.DESCRIPTION lists OS releases and download URL
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
|
#>
|
|
|
|
try {
|
|
write-progress "Reading OS_IPFS_hashes.csv ..."
|
|
|
|
$PathToRepo = "$PSScriptRoot/.."
|
|
$PathToCsvFile = "$PathToRepo/Data/os-release.csv"
|
|
invoke-webRequest -URI "https://fleschutz.droppages.com/downloads/OS_IPFS_hashes.csv" -outFile "$PathToCsvFile"
|
|
|
|
$Table = import-csv "$PathToCsvFile"
|
|
remove-item -path "$PathToCsvFile"
|
|
|
|
write-output "Operating System Releases"
|
|
write-output "========================="
|
|
foreach ($Row in $Table) {
|
|
write-output "* $($Row.Path.substring(3)) -> ipfs://$($Row.IPFS)"
|
|
}
|
|
exit 0
|
|
} catch {
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|