mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-03-31 03:06:23 +02:00
Added list-os-releases.ps1
This commit is contained in:
parent
49c71a22ae
commit
4768ad946d
@ -28,6 +28,7 @@ list-cmdlets.ps1, lists the PowerShell cmdlets
|
|||||||
list-earthquakes.ps1, lists earthquakes with magnitude >= 6.0 for the last 30 days
|
list-earthquakes.ps1, lists earthquakes with magnitude >= 6.0 for the last 30 days
|
||||||
list-modules.ps1, lists the PowerShell modules
|
list-modules.ps1, lists the PowerShell modules
|
||||||
list-news.ps1, lists the latest news
|
list-news.ps1, lists the latest news
|
||||||
|
list-os-releases.ps1, lists OS releases and download URL
|
||||||
list-processes.ps1, lists the local computer processes
|
list-processes.ps1, lists the local computer processes
|
||||||
list-random-passwords.ps1, prints a list of random passwords
|
list-random-passwords.ps1, prints a list of random passwords
|
||||||
list-random-pins.ps1, prints a list of random PIN's
|
list-random-pins.ps1, prints a list of random PIN's
|
||||||
|
|
@ -36,6 +36,7 @@ The following PowerShell scripts can be found in the [Scripts/](Scripts/) subfol
|
|||||||
* [list-earthquakes.ps1](Scripts/list-earthquakes.ps1) - lists earthquakes with magnitude >= 6.0 for the last 30 days
|
* [list-earthquakes.ps1](Scripts/list-earthquakes.ps1) - lists earthquakes with magnitude >= 6.0 for the last 30 days
|
||||||
* [list-modules.ps1](Scripts/list-modules.ps1) - lists the PowerShell modules
|
* [list-modules.ps1](Scripts/list-modules.ps1) - lists the PowerShell modules
|
||||||
* [list-news.ps1](Scripts/list-news.ps1) - lists the latest news
|
* [list-news.ps1](Scripts/list-news.ps1) - lists the latest news
|
||||||
|
* [list-os-releases.ps1](Scripts/list-os-releases.ps1) - lists OS releases and download URL
|
||||||
* [list-processes.ps1](Scripts/list-processes.ps1) - lists the local computer processes
|
* [list-processes.ps1](Scripts/list-processes.ps1) - lists the local computer processes
|
||||||
* [list-random-passwords.ps1](Scripts/list-random-passwords.ps1) - prints a list of random passwords
|
* [list-random-passwords.ps1](Scripts/list-random-passwords.ps1) - prints a list of random passwords
|
||||||
* [list-random-pins.ps1](Scripts/list-random-pins.ps1) - prints a list of random PIN's
|
* [list-random-pins.ps1](Scripts/list-random-pins.ps1) - prints a list of random PIN's
|
||||||
|
24
Scripts/list-os-releases.ps1
Executable file
24
Scripts/list-os-releases.ps1
Executable file
@ -0,0 +1,24 @@
|
|||||||
|
#!/snap/bin/powershell
|
||||||
|
<#
|
||||||
|
.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 = (get-item $MyInvocation.MyCommand.Path).directory.parent
|
||||||
|
$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"
|
||||||
|
|
||||||
|
foreach ($Row in $Table) {
|
||||||
|
write-output "* $($Row.Path) -> IPFS://$($Row.IPFS)"
|
||||||
|
}
|
||||||
|
exit 0
|
||||||
|
} catch {
|
||||||
|
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
exit 1
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user