-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.psm1
49 lines (40 loc) · 1.92 KB
/
main.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
40
41
42
43
44
45
46
47
48
49
# Internal functions
. $PSScriptRoot\Internal\Disable.SslVerification.ps1
. $PSScriptRoot\Internal\Enable.SslVerification.ps1
. $PSScriptRoot\Internal\Set.TLs12.ps1
. $PSScriptRoot\Internal\TestConnectioToePoServer.ps1
. $PSScriptRoot\Internal\WebRequest.ps1
# Public functions
. $PSScriptRoot\Public\Connect.MMePoServer.ps1
. $PSScriptRoot\Public\Disconnect.MMePoServer.ps1
# Public\ClientTasks functions
. $PSScriptRoot\Public\ClientTasks\Get.MMePoClientTaskExport.ps1
. $PSScriptRoot\Public\ClientTasks\Get.MMePoClientTaskFind.ps1
. $PSScriptRoot\Public\ClientTasks\Invoke.MMePoClientTaskRun.ps1
# Public\Policy functions
. $PSScriptRoot\Public\Policy\Get.MMePoPolicyExport.ps1
. $PSScriptRoot\Public\Policy\Get.MMePoPolicyFind.ps1
# Public\Core functions
. $PSScriptRoot\Public\Core\Get.MMePoCoreHelp.ps1
. $PSScriptRoot\Public\Core\Get.MMePoCoreListPermSets.ps1
. $PSScriptRoot\Public\Core\Get.MMePoCoreListQueries.ps1
. $PSScriptRoot\Public\Core\Invoke.MMePoCoreExecuteQuery.ps1
. $PSScriptRoot\Public\Core\Get.MMePoCoreExportPermissionSets.ps1
. $PSScriptRoot\Public\Core\Get.MMePoCoreListUsers.ps1
# Public\ePo functions
. $PSScriptRoot\Public\ePo\Get.MMePoGetVersion.ps1
# Public\Repository functions
. $PSScriptRoot\Public\Repository\Get.MMePoRepositoryFind.ps1
# Public\Scheduler functions
. $PSScriptRoot\Public\Scheduler\Get.MMePoSchedulerGetServerTask.ps1
. $PSScriptRoot\Public\Scheduler\Get.MMePoSchedulerListAllServerTasks.ps1
# Public\System functions
. $PSScriptRoot\Public\System\Get.MMePoSystemFind.ps1
. $PSScriptRoot\Public\System\Get.MMePoSystemFindGroup.ps1
. $PSScriptRoot\Public\System\Get.MMePoSystemFindTag.ps1
. $PSScriptRoot\Public\System\Move.MMePoSystemMove.ps1
. $PSScriptRoot\Public\System\Remove.MMePoSystemClearTag.ps1
. $PSScriptRoot\Public\System\Remove.MMePoSystemDelete.ps1
. $PSScriptRoot\Public\System\Set.MMePoSystemApplyTag.ps1
#Public\Other functions
. $PSScriptRoot\Public\Other\Get-MMePoOndemanScanReport.ps1