Skip to content

Commit 7f1cab5

Browse files
authored
Merge pull request MicrosoftDocs#3484 from dariomws306/patch-11
Update Invoke-CsComputerFailOver.md
2 parents e824bb1 + 3adeeb7 commit 7f1cab5

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

skype/skype-ps/skype/Invoke-CsComputerFailOver.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,19 @@ To return a list of all the Role-Based Access Control (RBAC) roles a cmdlet has
3434

3535
### -------------------------- Example 1 -------------------------- (Skype for Business Server 2015)
3636
```
37-
3837
Invoke-CsComputerFailOver -ComputerName "atl-mcs-001.litwareinc.com" -Report "C:\Logs\S1_FailOverLog.html" -WaitTime 1:30:00
3938
```
4039

4140
This example directs that the users assigned to server "atl-mcs-001.litwareinc.com" will be moved to other servers in the pool.
4241
The log output path is specified and the cmdlet will wait 1 hour 30 minutes before timing out.
4342

43+
### -------------------------- Example 2 -------------------------- (Skype for Business Server 2015)
44+
```
45+
$TimeSpan = New-TimeSpan -Minutes 30
46+
Invoke-CsComputerFailOver -ComputerName "atl-mcs-001.litwareinc.com" -DrainingTimeout $TimeSpan
47+
```
48+
49+
This example force to drain all conferences and sessions after 30 minutes. If users aren't moved to different front end after 30 minutes, it will drain all conferences and sessions and stop all services in the front end.
4450

4551
## PARAMETERS
4652

@@ -165,7 +171,7 @@ Accept wildcard characters: False
165171
```
166172

167173
### -DrainingTimeout
168-
Draining timeout in minutes to gracefully drain MCUs.
174+
Draining timeout in TimeSpan format to gracefully drain MCUs.
169175

170176
```yaml
171177
Type: TimeSpan

0 commit comments

Comments
 (0)