-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRemove-OneShellOrgProfileSystemEndpoint.ps1
44 lines (41 loc) · 1.84 KB
/
Remove-OneShellOrgProfileSystemEndpoint.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
Function Remove-OneShellOrgProfileSystemEndpoint
{
[cmdletbinding()]
param
(
[parameter(Mandatory, ValueFromPipelineByPropertyName)]
[string]$ProfileIdentity
,
[parameter(Mandatory, ValueFromPipelineByPropertyName)]
[ValidateNotNullOrEmpty()]
[string]$SystemIdentity
,
[parameter(Mandatory, ValueFromPipeline, ValueFromPipelineByPropertyName)]
[ValidateNotNullOrEmpty()]
[string[]]$Identity
,
[parameter()]
[ValidateScript( {Test-DirectoryPath -path $_})]
[string]$Path = $Script:OneShellOrgProfilePath
)
Process
{
#Get Org Profile
$OrgProfile = Get-OneShellOrgProfile -Identity $ProfileIdentity -Path $Path -ErrorAction Stop
#Get the System
$System = Get-OneShellOrgProfileSystem -Identity $SystemIdentity -Path $Path -ErrorAction Stop
if ($System.Endpoints.Count -eq 0) {throw('There are no endpoints to remove')}
#Get the Endpoint
foreach ($i in $Identity)
{
$endPoint = @($System.Endpoints | Where-Object -FilterScript {
$_.Identity -eq $i -or $_.Address -eq $i
})
if ($endPoint.Count -ne 1) {throw ("Invalid or Ambiguous Endpoint Identity $Identity Provided")}
else {$Endpoint = $Endpoint[0]}
$System = Remove-ExistingObjectFromMultivaluedAttribute -ParentObject $System -ChildObject $endPoint -MultiValuedAttributeName Endpoints -IdentityAttributeName Identity
$OrgProfile = Update-ExistingObjectFromMultivaluedAttribute -ParentObject $OrgProfile -ChildObject $system -MultiValuedAttributeName Systems -IdentityAttributeName Identity
Export-OneShellOrgProfile -Path $OrgProfile.DirectoryPath -profile $OrgProfile -ErrorAction Stop
}
}
}