-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPSIntro.psd1
More file actions
44 lines (41 loc) · 1.8 KB
/
Copy pathPSIntro.psd1
File metadata and controls
44 lines (41 loc) · 1.8 KB
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
36
37
38
39
40
41
42
43
44
#
# Module manifest for module 'PSIntro'
#
@{
RootModule = 'PSIntro.psm1'
ModuleVersion = '2.1.0'
CompatiblePSEditions = 'Core','Desktop'
GUID = 'e5e4f309-b2ec-43e0-ac18-4a136a112487'
Author = 'Jeff Hicks'
CompanyName = 'JDH Information Technology Solutions, Inc.'
Copyright = '(c) 2025-2026 JDH Information Technology Solutions, Inc.'
Description = 'A welcome screen for PowerShell and a set of brief tutorials designed for absolute beginners. The module also includes a few commands to help absolute PowerShell beginners manage their environment.'
PowerShellVersion = '5.1'
FormatsToProcess = @(
'formats\ModuleStatusInfo.format.ps1xml',
'formats\ProfileStatusInfo.format.ps1xml'
)
TypesToProcess = @()
FunctionsToExport = @(
'Start-PSTutorial',
'Get-PSIntro',
'Get-ModuleStatus',
'Get-ProfileStatus',
'Add-PSIntro',
'New-PSProfile'
)
RequiredModules = @()
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @('PSIntro', 'PSWelcome')
PrivateData = @{
PSData = @{
Tags = @('powershell', 'pwsh', 'tutorial', 'fundamentals')
LicenseUri = 'https://github.com/jdhitsolutions/PSIntro/blob/main/License.txt'
ProjectUri = 'https://github.com/jdhitsolutions/PSIntro'
#IconUri = ''
ReleaseNotes = 'https://github.com/jdhitsolutions/PSIntro/blob/main/CHANGELOG.md'
RequireLicenseAcceptance = $false
} # End of PSData hashtable
} # End of PrivateData hashtable
}