Skip to content

Commit 3e21feb

Browse files
authored
Merge pull request MicrosoftDocs#2061 from bjwhalen/patch-38
Update Enable-CsOnlineSipDomain.md
2 parents 7149996 + 703f1f3 commit 3e21feb

File tree

1 file changed

+18
-63
lines changed

1 file changed

+18
-63
lines changed

skype/skype-ps/skype/Enable-CsOnlineSipDomain.md

Lines changed: 18 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,20 @@ This cmdlet enables provisioning of users in Skype for Business Online for the s
1515
## SYNTAX
1616

1717
```
18-
Enable-CsOnlineSipDomain -Domain <String> [-Tenant <System.Guid>] [-DomainController <String>] [-Force]
19-
[-WhatIf] [-Confirm] [<CommonParameters>]
18+
Enable-CsOnlineSipDomain -Domain <String> [-Force] [-Confirm] [<CommonParameters>]
2019
```
2120

2221
## DESCRIPTION
2322
This cmdlet enables online provisioning of users in the specified SIP domain. In conjunction with Disable-CsOnlineSipDomain, this cmdlet allows organizations to consolidate *multiple on-premises deployments of Skype for Business Server (or Lync Server)* into a single Office 365 tenant. Consolidation can be achieved by moving one deployment at a time into Office 365, provided the following key requirements are met:
24-
- There must be at most 1 O365 tenant involved. Consolidation for scenarios with >1 O365 tenant is not supported.
25-
- At any given time, only 1 on-premise SfB forest can be in hybrid mode (shared sip address space) with Office 365. All other on-premises SfB forests must remain on-premises. (They presumably are federated with each other.)
23+
- There must be at most 1 O365 tenant involved. Consolidation for scenarios with > 1 O365 tenant is not supported.
24+
- At any given time, only 1 on-premise SfB forest can be in hybrid mode (Shared Sip Address Space) with Office 365. All other on-premises SfB forests must remain on-premises. (They presumably are federated with each other.)
2625
- If 1 deployment is in hybrid mode, all online SIP domains from any other SfB forests must be disabled before they can be synchronized into the tenant with Azure AD Connect. Users in all SfB forests other than the hybrid forest must remain on-premises.
2726
- Organizations must fully migrate (e.g move all users to the cloud) each SfB forest individually into the O365 tenant using hybrid mode (Shared Sip Address Space), and then detach the “hybrid” deployment, *before* moving on to migrate the next on-premise SfB deployment.
2827

2928
Before running this cmdlet for any SIP domain in a Skype for Business Server deployment, you must complete migration of any other existing hybrid SfB deployment that is in progress. All users in an existing hybrid deployment must be moved to the cloud, and that existing hybrid deployment must be detached from Office 365, as described below.
3029

3130
**IMPORTANT**
32-
If you have more than one on-premises deployment of Skype for Business Server, you *must* ensure SharedSipAddressSpace is disabled in all other Skype for Business Server deployments except the deployment containing the SID domain that is being enabled.
31+
If you have more than one on-premises deployment of Skype for Business Server, you *must* ensure SharedSipAddressSpace is disabled in all other Skype for Business Server deployments except the deployment containing the SIP domain that is being enabled.
3332

3433
**HOW TO DETACH A HYBRID DEPLOYMENT FROM OFFICE 365**
3534

@@ -41,22 +40,21 @@ Once you have moved all users from on-premises into the cloud, you can decommiss
4140
These steps should be done together as a unit.
4241

4342
> [!NOTE]
44-
> Any federated organizations that are using the older Direct Federation model (also known as Allowed Partner Server) will need to update their allowed domain entries for you organization to remove the proxy FQDN. This legacy federation model is not based on DNS SRV records, so such a config will become out of date, once your organization moves to the cloud. If you suspect any of your federated partners may be using Direct Federation, we suggest you send them a communication about this as you prepare to complete your migration to the cloud.
43+
> Any federated organizations that are using the older Direct Federation model (also known as Allowed Partner Server) will need to update their allowed domain entries for your organization to remove the proxy FQDN. This legacy federation model is not based on DNS SRV records, so such a config will become out of date, once your organization moves to the cloud. If you suspect any of your federated partners may be using Direct Federation, we suggest you send them a communication about this as you prepare to complete your migration to the cloud.
4544
4645
The steps are:
4746
</br>
48-
1. Disable shared sip address space in the Office 365 tenant
49-
\_sipfederationtls.\_tcpThe command below needs to be done from a Skype for Business Online PowerShell window.
47+
1. **Disable shared sip address space in the Office 365 tenant**
48+
The command below needs to be done from a Skype for Business Online PowerShell window.
5049

5150
`PS C:\> Set-CsTenantFederationConfiguration -SharedSipAddressSpace $false`</br>
5251

53-
2. Disable ability in on-premise to communicate with Office 365
52+
2. **Disable ability in on-premise to communicate with Office 365**
5453
The command below needs to be done from an on-premises PowerShell window. If you have previously imported an Office 365 session, start a new Skype for Business PowerShell session.
5554

5655
`Get-CsHostingProvider|Set-CsHostingProvider -Enabled $false`</br>
5756

58-
3. Update DNS to point to O365
59-
57+
3. **Update DNS to point to O365**
6058
The organization’s external DNS for the former on-premises deployment needs to be updated so that Skype for Business records point to Office 365 instead of Onprem. Specifically:
6159

6260

@@ -82,23 +80,8 @@ Enables the domain contoso.com for online provisioning in Skype for Business Onl
8280

8381
## PARAMETERS
8482

85-
### -Confirm
86-
Prompts you for confirmation before running the cmdlet.
87-
88-
```yaml
89-
Type: SwitchParameter
90-
Parameter Sets: (All)
91-
Aliases: cf
92-
applicable: Skype for Business Online
93-
Required: False
94-
Position: Named
95-
Default value: None
96-
Accept pipeline input: False
97-
Accept wildcard characters: False
98-
```
99-
10083
### -Domain
101-
The sip domain to be enabled for online provisioning in Skype for Business Online.
84+
The SIP domain to be enabled for online provisioning in Skype for Business Online.
10285

10386
```yaml
10487
Type: String
@@ -112,13 +95,13 @@ Accept pipeline input: False
11295
Accept wildcard characters: False
11396
```
11497
115-
### -DomainController
116-
{{Fill DomainController Description}}
98+
### -Confirm
99+
Prompts you for confirmation before running the cmdlet.
117100
118101
```yaml
119-
Type: String
102+
Type: SwitchParameter
120103
Parameter Sets: (All)
121-
Aliases: DC
104+
Aliases: cf
122105
applicable: Skype for Business Online
123106
Required: False
124107
Position: Named
@@ -127,8 +110,9 @@ Accept pipeline input: False
127110
Accept wildcard characters: False
128111
```
129112
113+
130114
### -Force
131-
{{Fill Force Description}}
115+
Suppresses all confirmation prompts that might occur when running the command.
132116
133117
```yaml
134118
Type: SwitchParameter
@@ -142,36 +126,6 @@ Accept pipeline input: False
142126
Accept wildcard characters: False
143127
```
144128
145-
### -Tenant
146-
{{Fill Tenant Description}}
147-
148-
```yaml
149-
Type: System.Guid
150-
Parameter Sets: (All)
151-
Aliases:
152-
applicable: Skype for Business Online
153-
Required: False
154-
Position: Named
155-
Default value: None
156-
Accept pipeline input: False
157-
Accept wildcard characters: False
158-
```
159-
160-
### -WhatIf
161-
Shows what would happen if the cmdlet runs.
162-
The cmdlet is not run.
163-
164-
```yaml
165-
Type: SwitchParameter
166-
Parameter Sets: (All)
167-
Aliases: wi
168-
applicable: Skype for Business Online
169-
Required: False
170-
Position: Named
171-
Default value: None
172-
Accept pipeline input: False
173-
Accept wildcard characters: False
174-
```
175129
176130
### CommonParameters
177131
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
@@ -183,7 +137,8 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
183137
184138
## OUTPUTS
185139
186-
### System.Object
140+
### None
141+
187142
## NOTES
188143
189144
## RELATED LINKS

0 commit comments

Comments
 (0)