Skip to content

Commit 1c196c3

Browse files
committed
Removed hyphens from headings due to appearance on docs.microsoft.com
1 parent 2addb55 commit 1c196c3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

skype/skype-ps/skype/Move-CsUser.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ When moving a user to or from Office 365 (either Skype for Business Online or Te
6262

6363
## EXAMPLES
6464

65-
### ------- EXAMPLE 1: Move a user to Teams-----------------------
65+
### EXAMPLE 1: Move a user to Teams
6666

6767
```powershell
6868
$cred=get-credential
@@ -71,7 +71,7 @@ Move-CsUser -Identity "[email protected]" -Target "sipfed.online.lync.com" -Mov
7171

7272
In Example 1, the Move-CsUser cmdlet is used to move the user account with sip address [email protected] to Teams. This user will now be a Teams only user. If -Credential parameter is not specified, the admin will be prompted for credentials.
7373

74-
### ------- EXAMPLE 2: Move a user to Skype for Business Online ----
74+
### EXAMPLE 2: Move a user to Skype for Business Online
7575

7676
```powershell
7777
$cred=get-credential
@@ -80,15 +80,15 @@ Move-CsUser -Identity [email protected] -Target "sipfed.online.lync.com" -Cred
8080

8181
In Example 2, the Move-CsUser cmdlet is used to move the user account with sip address [email protected] to Skype for Business Online. This is the same cmdlet usage as example 1, except the MoveToTeams switch is not specified.
8282

83-
### -------- EXAMPLE 3: Move a user to another on-premises pool-------
83+
### EXAMPLE 3: Move a user to another on-premises pool
8484

8585
```powershell
8686
Move-CsUser -Identity "Pilar Ackerman" -Target "atl-cs-001.litwareinc.com"
8787
```
8888

8989
In Example 3, the Move-CsUser cmdlet is used to move the user account with the Identity Pilar Ackerman to the Registrar pool atl-cs-001.litwareinc.com.
9090

91-
### --------- EXAMPLE 4: Move multiple users ---------------------------
91+
### EXAMPLE 4: Move multiple users
9292

9393
```powershell
9494
Get-CsUser -OU "ou=Finance,dc=litwareinc,dc=com" | Move-CsUser -Target "atl-cs-001.litwareinc.com"
@@ -97,7 +97,7 @@ Get-CsUser -OU "ou=Finance,dc=litwareinc,dc=com" | Move-CsUser -Target "atl-cs-0
9797
In Example 4, all the user accounts in the Finance organizational unit (OU) are moved to the Registrar pool atl-cs-001.litwareinc.com.
9898
To carry out this task, the command first uses the Get-CsUser cmdlet and the OU parameter to retrieve a collection of all the user accounts in the Finance OU. After the data has been retrieved, the information is piped to the Move-CsUser cmdlet, which moves each account in the collection to the Registrar pool atl-cs-001.litwareinc.com.
9999

100-
### --------- EXAMPLE 5: Move multiple users listed in a file ---------------------------
100+
### EXAMPLE 5: Move multiple users listed in a file
101101

102102
```powershell
103103
Move-CsUser -UserList C:\Folder1\Folder2\file1.txt -Target "atl-cs-001.litwareinc.com" -Report C:\Folder1\Folder2\out.csv

0 commit comments

Comments
 (0)