Skip to content

Commit 85c83fb

Browse files
authored
Merge pull request #108066 from fauhse/robo-fix
RoboCopy commandline fix to StorSimple migration guides 8000/1200
2 parents 3d8de2f + 9f59188 commit 85c83fb

File tree

2 files changed

+42
-2
lines changed

2 files changed

+42
-2
lines changed

articles/storage/files/storage-files-migration-storsimple-1200.md

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,43 @@ Run the first local copy to your Windows Server target folder:
108108
The following RoboCopy command will recall files from your StorSimple Azure storage to your local StorSimple and then move them over to the Windows Server target folder. The Windows Server will sync it to the Azure file share(s). As the local Windows Server volume gets full, cloud tiering will kick in and tier files that have successfully synced already. Cloud tiering will generate enough space to continue the copy from the StorSimple virtual appliance. Cloud tiering checks once an hour to see what has synced and to free up disk space to reach the 99% volume free space.
109109

110110
```console
111-
Robocopy /MIR /COPYALL /DCOPY:DAT <SourcePath> <Dest.Path>
111+
Robocopy /MT:32 /UNILOG:<file name> /TEE /B /MIR /COPYALL /DCOPY:DAT <SourcePath> <Dest.Path>
112112
```
113113

114114
Background:
115115

116+
:::row:::
117+
:::column span="1":::
118+
/MT
119+
:::column-end:::
120+
:::column span="1":::
121+
Allows for RoboCopy to run multi-threaded. Default is 8, max is 128.
122+
:::column-end:::
123+
:::row-end:::
124+
:::row:::
125+
:::column span="1":::
126+
/UNILOG:<file name>
127+
:::column-end:::
128+
:::column span="1":::
129+
Outputs status to LOG file as UNICODE (overwrites existing log).
130+
:::column-end:::
131+
:::row-end:::
132+
:::row:::
133+
:::column span="1":::
134+
/TEE
135+
:::column-end:::
136+
:::column span="1":::
137+
Outputs to console window. Used in conjunction with output to a log file.
138+
:::column-end:::
139+
:::row-end:::
140+
:::row:::
141+
:::column span="1":::
142+
/B
143+
:::column-end:::
144+
:::column span="1":::
145+
Runs RoboCopy in the same mode a backup application would use. It allows RoboCopy to move files that the current user does not have permissions to.
146+
:::column-end:::
147+
:::row-end:::
116148
:::row:::
117149
:::column span="1":::
118150
/MIR

articles/storage/files/storage-files-migration-storsimple-8000.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ We can bring the cache of the Windows Server up to the state of the appliance an
334334
RoboCopy command:
335335

336336
```console
337-
Robocopy /MT:32 /UNILOG:<file name> /TEE /MIR /COPYALL /DCOPY:DAT <SourcePath> <Dest.Path>
337+
Robocopy /MT:32 /UNILOG:<file name> /TEE /B /MIR /COPYALL /DCOPY:DAT <SourcePath> <Dest.Path>
338338
```
339339

340340
Background:
@@ -363,6 +363,14 @@ Background:
363363
Outputs to console window. Used in conjunction with output to a log file.
364364
:::column-end:::
365365
:::row-end:::
366+
:::row:::
367+
:::column span="1":::
368+
/B
369+
:::column-end:::
370+
:::column span="1":::
371+
Runs RoboCopy in the same mode a backup application would use. It allows RoboCopy to move files that the current user does not have permissions to.
372+
:::column-end:::
373+
:::row-end:::
366374
:::row:::
367375
:::column span="1":::
368376
/MIR

0 commit comments

Comments
 (0)