mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-17 08:01:31 +02:00
Renamed folder Scripts to scripts
This commit is contained in:
33
scripts/list-os-releases.ps1
Executable file
33
scripts/list-os-releases.ps1
Executable file
@ -0,0 +1,33 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Lists OS releases and download URL
|
||||
.DESCRIPTION
|
||||
This PowerShell script lists OS releases and download URL.
|
||||
.EXAMPLE
|
||||
PS> ./list-os-releases.ps1
|
||||
.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 # success
|
||||
} catch {
|
||||
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||
exit 1
|
||||
}
|
Reference in New Issue
Block a user