-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCapaPosh.psm1
39 lines (36 loc) · 1.16 KB
/
CapaPosh.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
<#
===========================================================================
Created with: SAPIEN Technologies, Inc., PowerShell Studio 2015 v4.2.97
Created on: 25-11-2015 10:06
Created by:
Organization:
Filename: CapaPosh.psm1
-------------------------------------------------------------------------
Module Name: CapaPosh
===========================================================================
#>
# Load functions
$functions = Get-ChildItem -Path "$PSScriptRoot\functions" -Recurse -Include *.ps1
foreach ($function in $functions)
{
. $function.FullName
}
# Load internal functions
#$internals = Get-ChildItem -Path "$PSScriptRoot\Internal" -Recurse -Include *.ps1
#foreach ($internal in $internals)
#{
# . $internal.FullName
#}
#Export-ModuleMember Get-CapaDefaultManagementPointRegistry,
# Replace-CapaPackage,
# Rebuild-CapaPackage,
# Backup-CapaPackage,
# Get-CapaLatestPackageVersionNumber,
# Set-CapaPackageFolder,
# Get-CapaPackages,
# Get-CapaPackagePath,
# Add-CapaAddUnitToPackage,
# Set-CapaPackageSchedule,
# Get-CapaUnitPackages,
# Set-UnitPackageStatus,
# Restart-CapaAgent