2021-09-27 10:38:12 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
2021-09-24 17:19:49 +02:00
|
|
|
|
Shows the credits for the PowerShell Scripts
|
2021-10-04 21:29:23 +02:00
|
|
|
|
.DESCRIPTION
|
2022-01-29 12:47:46 +01:00
|
|
|
|
This PowerShell script shows the credits for the PowerShell Scripts.
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.EXAMPLE
|
2021-09-24 17:19:49 +02:00
|
|
|
|
PS> ./list-credits
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2022-01-29 12:47:46 +01:00
|
|
|
|
.NOTES
|
2022-09-06 21:42:04 +02:00
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
2021-04-22 08:56:07 +02:00
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
clear-host
|
|
|
|
|
""
|
2021-04-25 19:07:02 +02:00
|
|
|
|
" ______ ______ ______ _____ __ ______ ______ "
|
|
|
|
|
" /\ ___\ /\ == \ /\ ___\ /\ __-. /\ \ /\__ _\ /\ ___\ "
|
|
|
|
|
" \ \ \____ \ \ __< \ \ __\ \ \ \/\ \ \ \ \ \/_/\ \/ \ \___ \ "
|
|
|
|
|
" \ \_____\ \ \_\ \_\ \ \_____\ \ \____- \ \_\ \ \_\ \/\_____\ "
|
|
|
|
|
" \/_____/ \/_/ /_/ \/_____/ \/____/ \/_/ \/_/ \/_____/ "
|
2021-04-22 08:56:07 +02:00
|
|
|
|
""
|
2021-04-25 19:07:02 +02:00
|
|
|
|
|
2021-04-22 08:56:07 +02:00
|
|
|
|
& "$PSScriptRoot/write-animated.ps1" "Typos: Markus Fleschutz"
|
|
|
|
|
& "$PSScriptRoot/write-animated.ps1" "Keyboard: Rapoo 12335 E9270P WL Ultra-Slim Touch"
|
|
|
|
|
& "$PSScriptRoot/write-animated.ps1" "Operating Systems: Windows 10 20H2 & Ubuntu Server 20.04 LTS"
|
2021-05-04 19:48:25 +02:00
|
|
|
|
& "$PSScriptRoot/write-animated.ps1" "Console: Windows Terminal 1.7.1033.0"
|
|
|
|
|
& "$PSScriptRoot/write-animated.ps1" "Background Image: Asteroid Field by starwars.com"
|
|
|
|
|
& "$PSScriptRoot/write-animated.ps1" "Shell: PowerShell 5.1 & PowerShell 7.1.3"
|
2021-05-04 20:01:31 +02:00
|
|
|
|
& "$PSScriptRoot/write-animated.ps1" "Scripts: PowerShell Scripts 0.2"
|
2021-04-22 08:56:07 +02:00
|
|
|
|
& "$PSScriptRoot/write-animated.ps1" "GitHub: github.com/fleschutz/PowerShell"
|
2021-04-22 09:26:03 +02:00
|
|
|
|
& "$PSScriptRoot/write-animated.ps1" "Git: version 2.30"
|
2021-04-22 09:03:17 +02:00
|
|
|
|
& "$PSScriptRoot/write-animated.ps1" "SSH: OpenSSH version 7.7p1"
|
|
|
|
|
& "$PSScriptRoot/write-animated.ps1" "Unicode: version 13.0"
|
2021-04-27 21:03:39 +02:00
|
|
|
|
& "$PSScriptRoot/write-animated.ps1" "Song #1: Epic Song by BoxCat Games from Free Music Archive"
|
|
|
|
|
& "$PSScriptRoot/write-animated.ps1" "Song #2: Siesta by Jahzzar from Free Music Archive"
|
2021-04-22 08:56:07 +02:00
|
|
|
|
& "$PSScriptRoot/write-animated.ps1" "Executive Producer: Markus Fleschutz"
|
|
|
|
|
& "$PSScriptRoot/write-animated.ps1" "Special Thanks: Andrea Fleschutz"
|
2021-04-22 09:06:10 +02:00
|
|
|
|
& "$PSScriptRoot/write-animated.ps1" "Copyright: (c) 2021. All Rights Reserved"
|
2021-04-22 08:56:07 +02:00
|
|
|
|
& "$PSScriptRoot/write-animated.ps1" "No Animals Were Harmed in the Making of This Film"
|
|
|
|
|
|
|
|
|
|
& "$PSScriptRoot/write-big.ps1" " Thanx 4 watching"
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2021-04-22 08:56:07 +02:00
|
|
|
|
} catch {
|
2022-04-13 12:06:32 +02:00
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-04-22 08:56:07 +02:00
|
|
|
|
exit 1
|
|
|
|
|
}
|