forked from plmcgrn/posh-ic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Posh-IC.psm1
98 lines (94 loc) · 2.2 KB
/
Posh-IC.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
if (Get-Module Posh-IC) { return }
if ($PSVersionTable.PSVersion.Major -lt 3) {
Write-Error "Posh-IC work only on Powershell 3.0 and higher"
exit
}
Push-Location $PSScriptRoot
. .\__Add-Types.ps1
Update-FormatData -AppendPath .\__display.formats.ps1xml
. .\New-ICSession.ps1
. .\Remove-ICSession.ps1
. .\Get-ICSessionStatus.ps1
. .\Get-ICUserStatus.ps1
. .\Get-ICUser.ps1
. .\Get-ICUsers.ps1
. .\New-ICUser.ps1
. .\New-ICUsers.ps1
. .\Remove-ICUser.ps1
. .\Get-ICWorkgroup.ps1
. .\Get-ICWorkgroups.ps1
. .\New-ICWorkgroup.ps1
. .\New-ICWorkgroups.ps1
. .\Remove-ICWorkgroup.ps1
. .\New-ICConfigurationId.ps1
. .\Get-IPAProcesses.ps1
. .\Get-IPAProcess.ps1
. .\Start-IPAProcess.ps1
. .\Import-IPAProcess.ps1
. .\Export-IPAProcess.ps1
. .\Get-ICSkills.ps1
. .\Get-ICSkill.ps1
. .\New-ICSkill.ps1
. .\Remove-ICSkill.ps1
. .\Get-ICLicenseAllocations.ps1
. .\Import-AttProfile.ps1
. .\Export-AttProfile.ps1
. .\Set-ICLicense.ps1
. .\Get-ICUserByNtUserId.ps1
. .\Get-ICRoles.ps1
. .\Get-ICFeatureLicenses.ps1
. .\Get-ICSchedules.ps1
. .\New-ICSchedule.ps1
. .\Get-ICSchedule.ps1
. .\Get-ICMediaServerStatus.ps1
. .\Get-ICUsersLegacy.ps1
. .\Get-ICDnisMappings.ps1
. .\Set-ICDnisMapping.ps1
. .\Get-ICAttendantInboundProfiles.ps1
. .\Get-ICAttendantInboundProfile.ps1
Pop-Location
Export-ModuleMember `
-Function @(
'New-ICSession',
'Remove-ICSession',
'Get-ICSessionStatus',
'Get-ICUserStatus',
'Get-ICUser',
'Get-ICUserByNtUserId',
'Get-ICRoles',
'Get-ICUsers',
'New-ICUser',
'New-ICUsers',
'Remove-ICUser',
'Get-ICWorkgroup',
'Get-ICWorkgroups',
'New-ICWorkgroup',
'New-ICWorkgroups',
'Remove-ICWorkgroup',
'New-ICConfigurationId',
'Get-IPAProcesses',
'Get-IPAProcess',
'Start-IPAProcess',
'Import-IPAProcess',
'Export-IPAProcess',
'Get-ICSkills',
'Get-ICSkill',
'New-ICSkill',
'Remove-ICSkill',
'Get-ICLicenseAllocations',
'Import-AttProfile',
'Export-AttProfile',
'Set-ICLicense',
'Get-ICUserByNtUserId',
'Get-ICRoles',
'Get-ICFeatureLicenses',
'Get-ICSchedules',
'New-ICSchedule',
'Get-ICSchedule',
'Get-ICMediaServerStatus',
'Get-ICUsersLegacy',
'Get-ICDnisMappings',
'Set-ICDnisMapping',
'Get-ICAttendantInboundProfiles',
'Get-ICAttendantInboundProfile'
)