-
Notifications
You must be signed in to change notification settings - Fork 0
/
PSTK.psm1
39 lines (30 loc) · 1.06 KB
/
PSTK.psm1
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
#Requires -Version 3.0
<#
.SYNOPSIS
PowerShell Toolbox
.DESCRIPTION
Collection of useful functions and procedures.
.NOTES
File name: PSTK.psm1
Author: Florian Carrier
Creation date: 2018-08-23
Last modified: 2019-10-11
Repository: https://github.com/Akaizoku/PSTK
Dependencies: Test-SQLConnection requires the SQLServer module
.LINK
https://github.com/Akaizoku/PSTK
.LINK
https://www.powershellgallery.com/packages/PSTK
.LINK
https://docs.microsoft.com/en-us/sql/powershell/download-sql-server-ps-module
#>
# Get public and private function definition files
$Public = @( Get-ChildItem -Path "$PSScriptRoot\Public\*.ps1" -ErrorAction "SilentlyContinue" )
$Private = @( Get-ChildItem -Path "$PSScriptRoot\Private\*.ps1" -ErrorAction "SilentlyContinue" )
# Import files using dot sourcing
foreach ($File in @($Public + $Private)) {
try { . $File.FullName }
catch { Write-Error -Message "Failed to import function $($File.FullName): $_" }
}
# Export public functions
Export-ModuleMember -Function $Public.BaseName