Skip to content

Commit 1426461

Browse files
authored
Merge pull request MicrosoftDocs#2682 from dariomws306/Dariomws5
Update New-CsMobilityPolicy.md
2 parents c3c349b + 9fadd68 commit 1426461

File tree

2 files changed

+61
-81
lines changed

2 files changed

+61
-81
lines changed

skype/skype-ps/skype/Move-CsMeetingRoom.md

Lines changed: 60 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -8,51 +8,37 @@ schema: 2.0.0
88
# Move-CsMeetingRoom
99

1010
## SYNOPSIS
11-
12-
Moves a Skype for Business Server meeting room object from one Registrar pool to another.
11+
Moves a Skype for Business Server 2015 meeting room object from one Registrar pool to another, or to Skype for Business Online.
1312
A meeting room is a conferencing device designed to address video conferencing and collaboration scenarios in small conference rooms.
1413
This cmdlet was introduced in Lync Server 2013.
1514

16-
17-
1815
## SYNTAX
1916

20-
### (Default)
21-
```
22-
Move-CsMeetingRoom [-Identity] <UserIdParameter> [-Target] <Fqdn> [-Confirm] [-DomainController <Fqdn>]
23-
[-Force] [-IgnoreBackendStoreException] [-PassThru] [-ProxyPool <Fqdn>] [-WhatIf] [<CommonParameters>]
24-
```
25-
26-
### Identity
17+
### Identity (Default)
2718
```
28-
Move-CsMeetingRoom [-Identity] <UserIdParameter> [-Target] <Fqdn> [-Confirm] [-DomainController <Fqdn>]
29-
[-Force] [-IgnoreBackendStoreException] [-PassThru] [-ProxyPool <Fqdn>] [-Report <String>] [-WhatIf]
30-
[<CommonParameters>]
19+
Move-CsMeetingRoom [-HostedMigrationOverrideUrl <String>] [-Credential <PSCredential>] [-Target] <Fqdn>
20+
[-Report <String>] [-Force] [-IgnoreBackendStoreException] [-ProxyPool <Fqdn>] [-DomainController <Fqdn>]
21+
[-Identity] <UserIdParameter> [-PassThru] [-WhatIf] [-Confirm] [<CommonParameters>]
3122
```
3223

3324
### Users
3425
```
35-
Move-CsMeetingRoom [-Target] <Fqdn> -UserList <String> [-ConcurrentMovesPerFE <Int32>] [-Confirm]
36-
[-DomainController <Fqdn>] [-Force] [-IgnoreBackendStoreException] [-PassThru] [-ProxyPool <Fqdn>]
37-
[-Report <String>] [-WhatIf] [<CommonParameters>]
26+
Move-CsMeetingRoom [-HostedMigrationOverrideUrl <String>] [-Credential <PSCredential>] [-Target] <Fqdn>
27+
-UserList <String> [-Report <String>] [-Force] [-IgnoreBackendStoreException] [-ProxyPool <Fqdn>]
28+
[-DomainController <Fqdn>] [-PassThru] [-WhatIf] [-Confirm] [<CommonParameters>]
3829
```
3930

4031
## DESCRIPTION
32+
In Skype for Business Server 2015, meeting rooms are self-contained computer appliances that are installed in conference rooms and supply advanced meeting capabilities such as:
4133

42-
In Skype for Business Server, meeting rooms are self-contained computer appliances that are installed in conference rooms and supply advanced meeting capabilities such as:
43-
44-
One touch meeting join experience
45-
46-
Multi-view video gallery
34+
* One touch meeting join experience
35+
* Multi-view video gallery
36+
* Touch-enabled white-boarding on the front of room screen
37+
* Calendar integration to provide access to scheduled meetings
38+
* Content sharing and switching
4739

48-
Touch-enabled white-boarding on the front of room screen
49-
50-
Calendar integration to provide access to scheduled meetings
51-
52-
Content sharing and switching
53-
54-
In order to manage these new endpoint devices you must, among other things, create and enable a Exchange resource mailbox account for the device, then enable that resource account for Skype for Business Server.
55-
Note that, for Skype for Business Server, there are no cmdlets for creating or removing meeting rooms.
40+
In order to manage these new endpoint devices you must, among other things, create and enable a Exchange resource mailbox account for the device, then enable that resource account for Skype for Business Server 2015.
41+
Note that, for Skype for Business Server 2015, there are no cmdlets for creating or removing meeting rooms.
5642
Instead, you use the Enable-CsMeetingRoom cmdlet to enable meeting rooms and the Disable-CsMeetingRoom cmdlet to disable meeting rooms.
5743
The resource account must already exist in order for you to enable the meeting room, and disabling a meeting room only removes that room from your collection of meeting rooms; it does not delete the resource mailbox account.
5844

@@ -64,23 +50,26 @@ Skype for Business Server Control Panel: The functions carried out by the Move-C
6450

6551
### -------------------------- Example 1 --------------------------
6652
```
67-
6853
Move-CsMeetingRoom -Target "atl-cs-001.litwareinc.com" -Identity "Room 14"
6954
```
7055

7156
The command shown in Example 1 moves the meeting room with the display name "Room 14" to the pool atl-cs-001.litwareinc.com.
7257

73-
7458
### -------------------------- Example 2 --------------------------
7559
```
76-
7760
Get-CsMeetingRoom | Move-CsMeetingRoom -Target "atl-cs-001.litwareinc.com"
7861
```
7962

8063
Example 2 moves all the meeting rooms in the organization to the pool atl-cs-001.litwareinc.com.
8164
To do this, the command first calls the Get-CsMeetingRoom cmdlet without any parameters; that returns a collection of all the meeting rooms configured for use in the organization.
8265
That collection is then piped to the Move-CsMeetingRoom cmdlet, which moves each meeting room in the collection to the new pool.
8366

67+
### -------------------------- Example 3 --------------------------
68+
```
69+
Move-CsMeetingRoom -Identity "Room 15" -HostedMigrationOverrideUrl "https://admin2a.online.lync.com/HostedMigration/hostedmigrationservice.svc" -Target "sipfed.online.lync.com" -Credential $credential
70+
```
71+
72+
The command shown in Example 3 moves the meeting room with the display name "Room 15" to Skype for Business Online.
8473

8574
## PARAMETERS
8675

@@ -151,12 +140,28 @@ Accept pipeline input: False
151140
Accept wildcard characters: False
152141
```
153142
154-
### -Force
143+
### -Credential
144+
Enables you to run the Move-CsMeetingRoom cmdlet under alternate credentials.
145+
This might be required if the account you used to log on to Windows does not have the necessary privileges required to work with user objects.
155146
156-
When present, instructs the Move-CsMeetingRoom cmdlet to ignore all errors that might occur when carrying out the move operation.
157-
As a general rule, you should avoid using the Force parameter unless absolutely necessary.
147+
To use the Credential parameter you must first create a PSCredential object using the Get-Credential cmdlet.
148+
For details, see the Get-Credential cmdlet help topic.
158149
150+
```yaml
151+
Type: PSCredential
152+
Parameter Sets: (All)
153+
Aliases:
159154

155+
Required: False
156+
Position: Named
157+
Default value: None
158+
Accept pipeline input: False
159+
Accept wildcard characters: False
160+
```
161+
162+
### -Force
163+
When present, instructs the Move-CsMeetingRoom cmdlet to ignore all errors that might occur when carrying out the move operation.
164+
As a general rule, you should avoid using the Force parameter unless absolutely necessary.
160165
161166
```yaml
162167
Type: SwitchParameter
@@ -171,6 +176,21 @@ Accept pipeline input: False
171176
Accept wildcard characters: False
172177
```
173178
179+
### -HostedMigrationOverrideUrl
180+
URL for the hosted migration service used when moving a user to Lync Online.
181+
182+
```yaml
183+
Type: String
184+
Parameter Sets: (All)
185+
Aliases:
186+
187+
Required: False
188+
Position: Named
189+
Default value: None
190+
Accept pipeline input: False
191+
Accept wildcard characters: False
192+
```
193+
174194
### -IgnoreBackendStoreException
175195
When present, instructs the computer to ignore any errors that might occur with the backend database and attempt to the move meeting room despite those errors.
176196
@@ -205,11 +225,8 @@ Accept wildcard characters: False
205225
```
206226
207227
### -ProxyPool
208-
209228
This parameter is not used with the on-premises version of Skype for Business Online.
210229
211-
212-
213230
```yaml
214231
Type: Fqdn
215232
Parameter Sets: (All)
@@ -255,24 +272,11 @@ Accept pipeline input: False
255272
Accept wildcard characters: False
256273
```
257274
258-
### -ConcurrentMovesPerFE
259-
PARAMVALUE: Int32
260-
261-
```yaml
262-
Type: Int32
263-
Parameter Sets: Users
264-
Aliases:
265-
Applicable: Skype for Business Server 2015, Skype for Business Server 2019
266-
267-
Required: False
268-
Position: Named
269-
Default value: None
270-
Accept pipeline input: False
271-
Accept wildcard characters: False
272-
```
273-
274275
### -Report
275-
PARAMVALUE: String
276+
Specifies the file path for the log file created when the cmdlet runs.
277+
For example: -Report "C:\Logs\S1_FailOverLog.html".
278+
If this file already exists, it will be overwritten.
279+
By default, reports are written to the "AppData\Local\Temp" folder in your user profile.
276280
277281
```yaml
278282
Type: String

skype/skype-ps/skype/New-CsMobilityPolicy.md

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ schema: 2.0.0
1212
Creates a new mobility policy at the site or the per-user scope.
1313
Mobility policies determine whether or not a user can use Skype for Business Mobile.
1414
These policies also manage a user's ability to employ Call via Work, a feature that enables users to make and receive phone calls on their mobile phone by using their work phone number instead of their mobile phone number.
15-
Mobility policies can also be used to require Wi-Fi connections when making or receiving calls.
15+
Mobility policies can also be used to require Wi-Fi connections when making or receiving IP video/screen share calls.
1616
This cmdlet was introduced in the cumulative update for Lync Server 2010: November 2011.
1717

1818
The following parameters are not applicable to Skype for Business Online: AllowAutomaticPstnFallback, AllowCustomerExperienceImprovementProgram, AllowExchangeConnectivity, AllowSaveCallLogs, AsJob, Description, EncryptAppData, Force, Identity, InMemory, PipelineVariable, RequireIntune, Tenant, and VoiceSettings
@@ -42,7 +42,6 @@ Both of these capabilities can be managed by using mobility policies.
4242

4343
With Skype for Business Server, mobile devices can make or receive phone calls by using either the standard cellular phone network.
4444
or by using Wi-Fi connections.
45-
Mobility policies can be used to require Wi-Fi connections and to prevent calls over the cellular network.
4645

4746
When you install Skype for Business Server, you will have a single, global mobility policy that applies to all your users.
4847
However, administrators can use the New-CsMobilityPolicy cmdlet to create custom policies at either the site or the per-user scope.
@@ -259,29 +258,6 @@ Accept pipeline input: False
259258
Accept wildcard characters: False
260259
```
261260
262-
### -RequireWIFIForIPAudio
263-
264-
When set to True, the user can use IP audio in calls made when his or her mobile device is connected to a WiFi network.
265-
That means that the user will only be allowed to make audio calls using Wi-Fi, and will not be able to use the standard cellular phone network.
266-
The default value is False.
267-
268-
This parameter was introduced in Lync Server 2013.
269-
270-
271-
272-
```yaml
273-
Type: Boolean
274-
Parameter Sets: (All)
275-
Aliases:
276-
Applicable: Lync Server 2013, Skype for Business Server 2015, Skype for Business Server 2019
277-
278-
Required: False
279-
Position: Named
280-
Default value: None
281-
Accept pipeline input: False
282-
Accept wildcard characters: False
283-
```
284-
285261
### -RequireWIFIForIPVideo
286262
287263
When set to True, the user can use IP video only in calls made when mobile device is connected to a Wi-Fi network.

0 commit comments

Comments
 (0)