-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGet-ExVirtualDirectory.ps1
132 lines (125 loc) · 5.77 KB
/
Get-ExVirtualDirectory.ps1
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
function Get-ExVirtualDirectory {
<#
.Synopsis
Get information about Exchange virtual directories
.DESCRIPTION
Long description
.EXAMPLE
Get-ExVirtualDirectory | select *
This should be run in a PowerShell console with the Exchange cmdlets available. It will then gather
information about virtual directories from all Client Access Servers.
.INPUTS
Inputs to this cmdlet (if any)
.OUTPUTS
Output from this cmdlet (if any)
.NOTES
General notes
.COMPONENT
The component this cmdlet belongs to
.ROLE
The role this cmdlet belongs to
.FUNCTIONALITY
The functionality that best describes this cmdlet
#>
[CmdletBinding(DefaultParameterSetName='Parameter Set 1',
SupportsShouldProcess=$true,
PositionalBinding=$false,
HelpUri = 'http://www.microsoft.com/',
ConfirmImpact='Medium')]
[Alias()]
[OutputType([String])]
Param
(
# Param1 help description
[Parameter(Mandatory=$false,
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true,
ValueFromRemainingArguments=$false,
Position=0,
ParameterSetName='Parameter Set 1')]
[ValidateNotNull()]
[ValidateNotNullOrEmpty()]
$Param1,
# Specify a name filter for the servers to include.
[string]
$filter = "*"
)
Begin {
try {
$servers = @(Get-ExchangeServer | ?{$_.ServerRole -like "*ClientAccess*" -and (($_.AdminDisplayVersion -like "*15*") -or ($_.AdminDisplayVersion -like "*14*") -and ($_.Name -like $Filter))} | Select-Object Name)
} catch {
Write-Warning "Error getting Exchange Server"
break
}
}
Process {
$result = @()
$i=0
foreach ($server in $servers) {
$i++
Write-Progress -Activity "Getting Autodiscover URL information" -Status "Progress:"-PercentComplete (($i / $servers.count)*100)
$casServ = Get-ClientAccessServer -Identity $server.name | Select Name,AutodiscoverServiceInternalUri
$result += $casServ
Clear-Variable -Name casServ
}
$i=0
foreach ($server in $servers) {
$i++
Write-Progress -Activity "Getting Autodiscover VD information" -Status "Progress:"-PercentComplete (($i / $servers.count)*100)
$autoDisco = Get-AutodiscoverVirtualDirectory -Server $server.name -AdPropertiesOnly | Select Name,Server,InternalAuthenticationMethods,ExternalAuthenticationMethods
$result += $autoDisco
Clear-Variable -Name autoDisco
}
$i=0
foreach ($server in $servers) {
$i++
Write-Progress -Activity "Getting OWA VD information" -Status "Progress:"-PercentComplete (($i / $servers.count)*100)
$owa = Get-OWAVirtualDirectory -server $server.name -AdPropertiesOnly | Select Name,Server,InternalUrl,ExternalUrl,InternalAuthenticationMethods,ExternalAuthenticationMethods
$result += $owa
Clear-Variable -Name owa
}
$i=0
foreach ($server in $servers) {
$i++
Write-Progress -Activity "Getting ECP VD information" -Status "Progress:"-PercentComplete (($i / $servers.count)*100)
$ecp = Get-ECPVirtualDirectory -server $server.name -AdPropertiesOnly | Select Name,Server,InternalUrl,ExternalUrl,InternalAuthenticationMethods,ExternalAuthenticationMethods
$result += $ecp
Clear-Variable -Name ecp
}
$i=0
foreach ($server in $servers) {
$i++
Write-Progress -Activity "Getting Outlook Anywhere information" -Status "Progress:"-PercentComplete (($i / $servers.count)*100)
$oa = Get-OutlookAnywhere -server $server.name -AdPropertiesOnly | Select Name,Server,InternalHostname,ExternalHostname,ExternalClientAuthenticationMethod,InternalClientAuthenticationMethod,IISAuthenticationMethods
$result += $oa
Clear-Variable -Name oa
}
$i=0
foreach ($server in $servers) {
$i++
Write-Progress -Activity "Getting OAB VD information" -Status "Progress:"-PercentComplete (($i / $servers.count)*100)
$oab = Get-OABVirtualDirectory -server $server.name -AdPropertiesOnly | Select Server,InternalUrl,ExternalUrl,ExternalAuthenticationMethods,InternalAuthenticationMethods,OfflineAddressBooks
$result += $oab
Clear-Variable -Name oab
}
$i=0
foreach ($server in $servers) {
$i++
Write-Progress -Activity "Getting ActiveSync VD information" -Status "Progress:"-PercentComplete (($i / $servers.count)*100)
$eas = Get-ActiveSyncVirtualDirectory -server $server.name -AdPropertiesOnly | Select Server,InternalUrl,ExternalUrl,ExternalAuthenticationMethods,InternalAuthenticationMethods
$result += $eas
Clear-Variable -Name eas
}
$i=0
foreach ($server in $servers) {
$i++
Write-Progress -Activity "Getting Web Services information" -Status "Progress:"-PercentComplete (($i / $servers.count)*100)
$ws = Get-WebServicesVirtualDirectory -server $server.name -AdPropertiesOnly | Select Server,InternalUrl,InternalNlbBypassUrl,ExternalUrl,ExternalAuthenticationMethods,InternalAuthenticationMethods
$result += $ws
Clear-Variable -Name ws
}
$result
}
End {
}
}