Skip to content

Commit 833b7b1

Browse files
committed
how-to-connect-migrate-groups
1 parent 0883e7d commit 833b7b1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/active-directory/hybrid/how-to-connect-migrate-groups.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ During a cross-forest move, when a group object is moving from one forest (say F
3131

3232
Use the following scripts as a guide to learn how to migrate a single group from one forest to another. You can also use these scripts as a guide for migration of multiple groups. The scripts use the forest name F1 for the source forest and F2 for the destination forest.
3333

34-
First, we get the `objectGUID` and `mS-DS-ConsistencyGuid` of group object in forest F1. These attributes are exported to a CSV file.
34+
First, we get the `objectGUID` and `mS-DS-ConsistencyGuid` of the group object in forest F1. These attributes are exported to a CSV file:
3535
```
3636
<#
3737
DESCRIPTION
3838
============
3939
This script will take DN of a group as input.
4040
It then copies the objectGUID and mS-DS-ConsistencyGuid values along with other attributes of the given group to a CSV file.
4141
42-
This CSV file can then be used as input to Export-Group script
42+
This CSV file can then be used as input to Export-Group script.
4343
#>
4444
Param(
4545
[ValidateNotNullOrEmpty()]
@@ -79,15 +79,15 @@ $results | Export-Csv "$outputCsv" -NoTypeInformation
7979
8080
```
8181

82-
Next, we use the generated output CSV file to stamp the `mS-DS-ConsistencyGuid` attribute on the target object in forest F2.
82+
Next, we use the generated output CSV file to stamp the `mS-DS-ConsistencyGuid` attribute on the target object in forest F2:
8383

8484

8585
```
8686
<#
8787
DESCRIPTION
8888
============
89-
This script will take DN of a group as input and the CSV file that was generated by Import-Group script
90-
It copies either the objectGUID or mS-DS-ConsistencyGuid value from CSV file to the given object.
89+
This script will take DN of a group as input and the CSV file that was generated by the Import-Group script.
90+
It copies either the objectGUID or the mS-DS-ConsistencyGuid value from the CSV file to the given object.
9191
9292
#>
9393
Param(

0 commit comments

Comments
 (0)