mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-04 22:38:34 +02:00
Updated opn-help.ps1
This commit is contained in:
parent
fc3df9c907
commit
84b93ca085
@ -1,4 +1,4 @@
|
|||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Provide help to the user
|
Provide help to the user
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
@ -13,18 +13,31 @@
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
""
|
""
|
||||||
& "$PSScriptRoot/write-typewriter.ps1" "DON'T PANIC - HELP IS ON THE WAY..." 170
|
Write-Host " " -foregroundColor black -backgroundColor white
|
||||||
|
Write-Host " ▄▄▄▄▄▄▄ ▄ ▄▄▄ ▄▄▄▄▄▄▄ " -foregroundColor black -backgroundColor white
|
||||||
|
Write-Host " █ ▄▄▄ █ ▄▄▀█ █ ▄▄▄ █ " -foregroundColor black -backgroundColor white
|
||||||
|
Write-Host " █ ███ █ █▀ ▄▀ █ ███ █ " -foregroundColor black -backgroundColor white
|
||||||
|
Write-Host " █▄▄▄▄▄█ ▄▀█▀█ █▄▄▄▄▄█ " -foregroundColor black -backgroundColor white
|
||||||
|
Write-Host " ▄▄▄▄ ▄ ▄▄▄██▄ ▄▄▄ ▄ " -foregroundColor black -backgroundColor white
|
||||||
|
Write-Host " ▀ █ ▀▄▄▀█▀▀█▀█▀█▀▀▀▄█ " -foregroundColor black -backgroundColor white
|
||||||
|
Write-Host " ▄▄██▀▀▄▄█ ▄▀▄▄▄▀ ▀ ▀▄ " -foregroundColor black -backgroundColor white
|
||||||
|
Write-Host " ▄▄▄▄▄▄▄ ▀▀██▄▄██▄ ▀ ▀ " -foregroundColor black -backgroundColor white
|
||||||
|
Write-Host " █ ▄▄▄ █ ▀▄ ▄▀ ▀ ██▀▀ " -foregroundColor black -backgroundColor white
|
||||||
|
Write-Host " █ ███ █ █▄ ▄ ▀▄ ▀█▀ " -foregroundColor black -backgroundColor white
|
||||||
|
Write-Host " █▄▄▄▄▄█ █▀▄█ ███▀ ▄ ▀ " -foregroundColor black -backgroundColor white
|
||||||
|
Write-Host " " -foregroundColor black -backgroundColor white
|
||||||
""
|
""
|
||||||
& "$PSScriptRoot/open-URL.ps1" -text "1. See the official PowerShell documentation at: " "https://docs.microsoft.com/en-us/powershell"
|
Write-Host " 🔷 PowerShell documentation: " -noNewline
|
||||||
Start-Sleep -milliseconds 50
|
Write-Host "https://docs.microsoft.com/en-us/powershell" -foregroundColor blue
|
||||||
|
|
||||||
& "$PSScriptRoot/open-URL.ps1" -text "2. A PowerShell tutorial is at: " "https://www.guru99.com/powershell-tutorial.html"
|
Write-Host " 🔷 PowerShell tutorial: " -noNewline
|
||||||
Start-Sleep -milliseconds 50
|
Write-Host "https://www.guru99.com/powershell-tutorial.html" -foregroundColor blue
|
||||||
|
|
||||||
& "$PSScriptRoot/open-URL.ps1" -text "3. PowerShell FAQ's can be found here: " "https://github.com/fleschutz/PowerShell/blob/main/docs/FAQ.md"
|
Write-Host " 🔷 PowerShell FAQ's: " -noNewline
|
||||||
Start-Sleep -milliseconds 50
|
Write-Host "https://github.com/fleschutz/PowerShell/blob/main/docs/FAQ.md" -foregroundColor blue
|
||||||
|
|
||||||
& "$PSScriptRoot/open-URL.ps1" -text "4. A PowerShell Cheat Sheet is at: " "https://github.com/fleschutz/PowerShell/blob/main/docs/cheat-sheet.md"
|
Write-Host " 🔷 PowerShell Cheat Sheet: " -noNewline
|
||||||
|
Write-Host "https://github.com/fleschutz/PowerShell/blob/main/docs/cheat-sheet.md" -foregroundColor blue
|
||||||
""
|
""
|
||||||
"NOTE: Use <Ctrl> + <Click> to open the links in your browser."
|
"NOTE: Use <Ctrl> + <Click> to open the links in your browser."
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
Loading…
Reference in New Issue
Block a user