Skip to content

Write-Help

Writes a help page

function White($line) {
	Write-Host $line -foregroundColor white -backgroundColor black -noNewline
}

function Blue($line) {
	Write-Host $line -foregroundColor blue -backgroundColor black -noNewline
}

Write-Host ""
Write-Host "  _____                       _____ _          _ _ "
Write-Host " |  __ \                     / ____| |        | | |"
Write-Host " | |__) |____      _____ _ _| (___ | |__   ___| | |"
Write-Host " |  ___/ _ \ \ /\ / / _ \ '__\___ \| '_ \ / _ \ | |"
Write-Host " | |  | (_) \ V  V /  __/ |  ____) | | | |  __/ | |"
Write-Host " |_|   \___/ \_/\_/ \___|_| |_____/|_| |_|\___|_|_|  $($PSVersionTable.PSVersion) $($PSVersionTable.PSEdition) Edition"
Write-Host ""
Write-Host ""
White "?????????????????????????????????????`n"
White "????????????????????????????????????? Documentation: "; Blue "https://docs.microsoft.com/en-us/powershell`n"
White "???? ????? ?? ??????  ???? ????? ????`n"
White "???? ?   ? ?? ? ?? ? ??? ? ?   ? ???? Tutorial: "; Blue "https://www.guru99.com/powershell-tutorial.html`n"
White "???? ????? ??? ????? ? ??? ????? ????`n"
White "???????????????? ??? ??? ???????????? Video tutorials: "; Blue "https://www.youtube.com/results?search_query=PowerShell`n"
White "??????  ????  ???? ?? ??? ???????????`n"
White "????????????? ? ??? ???? ? ?????????? FAQ's: "; Blue "https://github.com/fleschutz/PowerShell/blob/main/docs/FAQ.md`n"
White "????? ??????? ??? ??  ? ??? ?????????`n"
White "????? ? ? ???  ????? ???????????????? Cheat sheet: "; Blue "https://github.com/fleschutz/PowerShell/blob/main/docs/cheat-sheet.md`n"
White "????  ??????  ???????  ? ????? ??????`n"
White "???? ???? ????? ?? ????? ?? ????????? Sample scripts: "; Blue "https://github.com/fleschutz/PowerShell`n" 
White "????????????????? ?? ??? ??? ?   ????`n"
White "???? ????? ????????  ??  ??? ???????? Donate: "; Blue "https://www.paypal.com/paypalme/Fleschutz`n"
White "???? ?   ? ? ???? ??  ?? ?????   ????`n"
White "???? ????? ? ?? ???  ???? ??  ? ????? Type 'Get-Help <NAME>' to display information about <NAME>`n"
White "?????????????????????????????????????`n"
White "????????????????????????????????????? HINT: press <Ctrl> + <Click> to follow the links above.`n"
White "?????????????????????????????????????`n"
exit 0 # success

This script has no configurable parameters.

An interactive directory of PowerShell scripts.