Skip to content

Commit e44405e

Browse files
committed
2 parents fd42fb9 + b2ffc24 commit e44405e

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

sharepoint/sharepoint-ps/sharepoint-server/Copy-SPSideBySideFiles.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Copy-SPSideBySideFiles
99

1010
## SYNOPSIS
11-
{{Fill in the Synopsis}}
11+
Copy side by side files.
1212

1313
## SYNTAX
1414

@@ -18,21 +18,23 @@ Copy-SPSideBySideFiles [-AssignmentCollection <SPAssignmentCollection>] [-LogFil
1818
```
1919

2020
## DESCRIPTION
21-
{{Fill in the Description}}
21+
In SharePoint Server 2016, zero down time in-place upgrade is available. If the PSConfig.exe file is used during an upgrade and copy SideBySide files fail, you can use the **Copy-SPSideBySideFiles** cmdlet to copy SideBySide files. If you use Microsoft PowerShell scripts instead of PSConfig.exe to perform an upgrade, please run the **Copy-SPSideBySideFiles** cmdlet to copy SideBySide files.
2222

2323
## EXAMPLES
2424

2525
### Example 1
2626
```
27-
PS C:\> {{ Add example code here }}
27+
Copy-SPSideBySideFiles -LogFile "C:\CopySideBySideFiles.log"
2828
```
2929

30-
{{ Add example description here }}
30+
This example copies SideBySide files and writes a log data of the copy process to the CopySideBySideFiles.log file.
3131

3232
## PARAMETERS
3333

3434
### -AssignmentCollection
35-
{{Fill AssignmentCollection Description}}
35+
Manages objects for the purpose of proper disposal. Use of objects, such as SPWeb or SPSite, can use large amounts of memory and use of these objects in Windows PowerShell scripts requires proper memory management. Using the SPAssignment object, you can assign objects to a variable and dispose of the objects after they are needed to free up memory. When SPWeb, SPSite, or SPSiteAdministration objects are used, the objects are automatically disposed of if an assignment collection or the Global parameter is not used.
36+
37+
**NOTE**: When the Global parameter is used, all objects are contained in the global store. If objects are not immediately used, or disposed of by using the Stop-SPAssignment command, an out-of-memory scenario can occur.
3638

3739
```yaml
3840
Type: SPAssignmentCollection
@@ -48,7 +50,7 @@ Accept wildcard characters: False
4850
```
4951
5052
### -LogFile
51-
{{Fill LogFile Description}}
53+
Specifies the fully-qualified logfile name of SideBySide copy operation. If LogFile is not specified, the logfile will be placed in default SharePoint log files folder.
5254
5355
```yaml
5456
Type: String

0 commit comments

Comments
 (0)