PowerShell/docs/list-credits.md

80 lines
2.9 KiB
Markdown
Raw Permalink Normal View History

2024-01-25 13:37:12 +01:00
Script: *list-credits.ps1*
========================
2021-11-08 21:36:42 +01:00
2022-02-10 09:01:07 +01:00
This PowerShell script shows the credits for the PowerShell Scripts.
2021-11-08 21:36:42 +01:00
2023-07-29 10:04:38 +02:00
Parameters
----------
2021-11-08 21:36:42 +01:00
```powershell
2023-07-29 10:15:44 +02:00
PS> ./list-credits.ps1 [<CommonParameters>]
2021-11-08 21:36:42 +01:00
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
2023-07-29 10:04:38 +02:00
Example
-------
2021-11-08 21:36:42 +01:00
```powershell
2023-08-06 21:36:33 +02:00
PS> ./list-credits.ps1
2021-11-08 21:36:42 +01:00
```
2023-07-29 10:04:38 +02:00
Notes
-----
2022-11-17 19:46:02 +01:00
Author: Markus Fleschutz | License: CC0
2021-11-08 21:36:42 +01:00
2023-07-29 10:04:38 +02:00
Related Links
-------------
2021-11-08 21:36:42 +01:00
https://github.com/fleschutz/PowerShell
2023-07-29 10:04:38 +02:00
Script Content
--------------
2022-11-17 20:05:34 +01:00
```powershell
2022-11-17 20:02:26 +01:00
<#
.SYNOPSIS
Shows the credits for the PowerShell Scripts
.DESCRIPTION
This PowerShell script shows the credits for the PowerShell Scripts.
.EXAMPLE
2023-08-06 21:36:33 +02:00
PS> ./list-credits.ps1
2022-11-17 20:02:26 +01:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
2024-05-19 10:25:56 +02:00
Clear-Host
2022-11-17 20:02:26 +01:00
" ______ ______ ______ _____ __ ______ ______ "
" /\ ___\ /\ == \ /\ ___\ /\ __-. /\ \ /\__ _\ /\ ___\ "
" \ \ \____ \ \ __< \ \ __\ \ \ \/\ \ \ \ \ \/_/\ \/ \ \___ \ "
" \ \_____\ \ \_\ \_\ \ \_____\ \ \____- \ \_\ \ \_\ \/\_____\ "
" \/_____/ \/_/ /_/ \/_____/ \/____/ \/_/ \/_/ \/_____/ "
2024-05-19 10:25:56 +02:00
""
2022-11-17 20:02:26 +01:00
& "$PSScriptRoot/write-animated.ps1" "Typos: Markus Fleschutz"
& "$PSScriptRoot/write-animated.ps1" "Keyboard: Rapoo 12335 E9270P WL Ultra-Slim Touch"
2024-05-19 10:25:56 +02:00
& "$PSScriptRoot/write-animated.ps1" "Operating Systems: Windows 11 23H3 & Ubuntu Server 24.04 LTS"
& "$PSScriptRoot/write-animated.ps1" "Console: Windows Terminal 1.20.11271.0"
& "$PSScriptRoot/write-animated.ps1" "Shell: PowerShell 5.1.22621.2506 & PowerShell 7.4.2"
& "$PSScriptRoot/write-animated.ps1" "Scripts: PowerShell Scripts 1.1"
2022-11-17 20:02:26 +01:00
& "$PSScriptRoot/write-animated.ps1" "GitHub: github.com/fleschutz/PowerShell"
2024-05-19 10:25:56 +02:00
& "$PSScriptRoot/write-animated.ps1" "Git: version 2.45.0"
2022-11-17 20:02:26 +01:00
& "$PSScriptRoot/write-animated.ps1" "SSH: OpenSSH version 7.7p1"
& "$PSScriptRoot/write-animated.ps1" "Unicode: version 13.0"
& "$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"
& "$PSScriptRoot/write-animated.ps1" "Executive Producer: Markus Fleschutz"
& "$PSScriptRoot/write-animated.ps1" "Special Thanks: Andrea Fleschutz"
2024-05-19 10:25:56 +02:00
& "$PSScriptRoot/write-animated.ps1" "Copyright: (c) 2024. All Rights Reserved"
2022-11-17 20:02:26 +01:00
& "$PSScriptRoot/write-animated.ps1" "No Animals Were Harmed in the Making of This Film"
& "$PSScriptRoot/write-big.ps1" " Thanx 4 watching"
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
2022-11-17 20:05:34 +01:00
```
2022-11-17 20:02:26 +01:00
2024-08-15 09:51:46 +02:00
*(generated by convert-ps2md.ps1 using the comment-based help of list-credits.ps1 as of 08/15/2024 09:50:49)*