-
Notifications
You must be signed in to change notification settings - Fork 0
/
Get-GdHelp.ps1
35 lines (25 loc) · 1.11 KB
/
Get-GdHelp.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Function Get-GDHelp {
[CmdletBinding()]
Param()
# Define Version number of this function
$Version = [version]::new(1,0,2)
# Create the help text block.
# Define the Help text
$HelpText = @"
+------------------------------------------------------------+
! !
! GDScripts - A Grateful Dead Module !
! Version: $($Version.ToString()) !
! !
+------------------------------------------------------------+
The module contains the following functions:
* Get-GDHelp - Gets this help text
* Get-GDFolderExtension - gets all the extensions for shows in GD archive
* Get-GDShowSizeByYear - creates a summary of total shows by year
* Get-GDTodayInHistory - gets all the shows from today in GD/Jerry history, optionally opening them in Windows Explorer
* Measure-GDDuplicate - works out how many shows have duplcate recordings
* Measure-GDShows - creates a useful summary of what is in the GD/JG archive
"@
# Display the help text
$HelpText
}