Skip to content

Commit a3750aa

Browse files
committed
More acrolinx fixes.
1 parent ae71f75 commit a3750aa

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

articles/storage/files/migrate-files-between-shares.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,21 +35,15 @@ Follow these steps to migrate using Robocopy, a command-line file copy utility i
3535

3636
2. Mount both the source and target file shares to the VM. Be sure to mount them using the storage account key to make sure the VM has access to all the files. Don't use a domain identity.
3737

38-
3. Run this command at the Windows command prompt. Optionally, you can include flags for logging features as a best practice (/NP, /NFL, /NDL, /UNILOG).
39-
40-
```console
41-
robocopy <source> <target> /MIR /COPYALL /MT:16 /R:2 /W:1 /B /IT /DCOPY:DAT
42-
```
43-
44-
Here is an example command with source mounted as `s:\` and target mounted as `t:\`:
38+
3. Run this command at the Windows command prompt. Optionally, you can include flags for logging features as a best practice (/NP, /NFL, /NDL, /UNILOG). Remember to replace `s:\` and `t:\` with the paths to the mounted source and target shares as appropriate.
4539

4640
```console
4741
robocopy s:\ t:\ /MIR /COPYALL /MT:16 /R:2 /W:1 /B /IT /DCOPY:DAT
4842
```
4943

5044
You can run the command while your source is still online, but IOPS and throughput used for the robocopy job counts against your file share limits.
5145

52-
4. After the initial run completes, disconnect your application from the existing share and run the same robocopy command again to copy over all the changes that happened since the initial run. Any data that has not changed since the last copy job will be skipped.
46+
4. After the initial run completes, disconnect your application from the existing share and run the same robocopy command again to copy over all the changes that happened since the initial run. Any data unchanged since the last copy job is skipped.
5347

5448
5. You can repeat step for as many times as you would like before cutting over to the new file share.
5549

0 commit comments

Comments
 (0)