Getting Started
Article
5 minutes to read
2024-09-06 09:35:04 +0100
If you want to perform a bulk edit or a migration then you need to start here. This tool has been tested on updating from 100 to 250,000 work items by its users.
Watch the Video Overview to get started in 30 minutes. This tool is complicated and it’s not always easy to discover what you need to do.
Install
In order to run the migration you will need to install the tools first.
- Install winget
- Run
winget install nkdAgility.AzureDevOpsMigrationTools
from the Windows Terminal (Not eleveated) to install on Windows 10 and Windows 11. For other operating systems you can download the latest release and unzip it to a folder of your choice.
Note: The tools will be installed to %Localappdata%\Microsoft\WinGet\Packages\nkdAgility.AzureDevOpsMigrationTools_Microsoft.Winget.Source_XXXXXXXXXX
and a symbolic link to devopsmigration.exe
that lets you run it from anywhere using devopsmigration init
.
Note: There is a known issue with the winget package that it does not add the tools to the PATH if you use an elevated Terminal. You can add the tools to the PATH manually by adding %Localappdata%\Microsoft\WinGet\Packages\nkdAgility.AzureDevOpsMigrationTools_Microsoft.Winget.Source_XXXXXXXXXX\tools
to the PATH.
Upgrade
- Run
winget upgrade nkdAgility.AzureDevOpsMigrationTools
to upgrade the tools.
Server configuration and setup
Follow the setup instructions to make sure that you can run the tool against your environments and more importantly add the required custom field ‘ReflectedWorkItemId’
Create a default configuration file
- Open your Windows Terminal in your chosen working folder
- Run
devopsmigration init
to create a default configuration - Open
configuration.json
from the current directory
You can now customize the configuration depending on what you need to do. However, a basic config that you can use to migrate from one team project to another with the same process template is:
{
"ChangeSetMappingFile": null,
"Source": {
"$type": "TfsTeamProjectConfig",
"Collection": "https://dev.azure.com/nkdagility-preview/",
"Project": "migrationSource1",
"ReflectedWorkItemIDFieldName": "nkdScrum.ReflectedWorkItemId",
"AllowCrossProjectLinking": false,
"AuthenticationMode": "Prompt",
"PersonalAccessToken": "",
"PersonalAccessTokenVariableName": "",
"LanguageMaps": {
"AreaPath": "Area",
"IterationPath": "Iteration"
}
},
"Target": {
"$type": "TfsTeamProjectConfig",
"Collection": "https://dev.azure.com/nkdagility-preview/",
"Project": "migrationTest5",
"ReflectedWorkItemIDFieldName": "nkdScrum.ReflectedWorkItemId",
"AllowCrossProjectLinking": false,
"AuthenticationMode": "Prompt",
"PersonalAccessToken": "njp3kcec4nbev63fmbepvdpn35drawmonk5qf5yqsw77dgfwnjda",
"PersonalAccessTokenVariableName": "",
"LanguageMaps": {
"AreaPath": "Area",
"IterationPath": "Iteration"
}
},
"FieldMaps": [],
"GitRepoMapping": null,
"LogLevel": "Debug",
"CommonEnrichersConfig": [
{
"$type": "TfsNodeStructureOptions",
"NodeBasePaths": [],
"AreaMaps": {
"^Skypoint Cloud$": "MigrationTest5"
},
"IterationMaps": {
"^Skypoint Cloud\\\\Sprint 1$": "MigrationTest5\\Sprint 1"
},
"ShouldCreateMissingRevisionPaths": true,
"ReplicateAllExistingNodes": true
},
{
"$type": "TfsWorkItemLinkEnricherOptions",
"Enabled": true,
"FilterIfLinkCountMatches": true,
"SaveAfterEachLinkIsAdded": false
},
{
"$type": "TfsRevisionManagerOptions",
"Enabled": true,
"ReplayRevisions": true,
"MaxRevisions": 0
},
{
"$type": "TfsAttachmentEnricherOptions",
"Enabled": true,
"ExportBasePath": "c:\\temp\\WorkItemAttachmentExport",
"MaxAttachmentSize": 480000000
},
{
"$type": "StringManipulatorEnricherOptions",
"Enabled": true,
"MaxStringLength": 1000000,
"Manipulators": [
{
"$type": "RegexStringManipulator",
"Enabled": true,
"Pattern": "[^( -~)\n\r\t]+",
"Replacement": "",
"Description": "Remove invalid characters from the end of the string"
}
]
}
],
"Processors": [
{
"$type": "WorkItemMigrationConfig",
"Enabled": true,
"UpdateCreatedDate": true,
"UpdateCreatedBy": true,
"WIQLQuery": "SELECT [System.Id] FROM WorkItems WHERE [System.TeamProject] = @TeamProject AND [System.WorkItemType] NOT IN ('Test Suite', 'Test Plan','Shared Steps','Shared Parameter','Feedback Request') ORDER BY [System.ChangedDate] desc",
"LinkMigration": true,
"FixHtmlAttachmentLinks": false,
"SkipToFinalRevisedWorkItemType": false,
"WorkItemCreateRetryLimit": 5,
"FilterWorkItemsThatAlreadyExistInTarget": false,
"PauseAfterEachWorkItem": false,
"AttachRevisionHistory": false,
"LinkMigrationSaveEachAsAdded": false,
"GenerateMigrationComment": true,
"WorkItemIDs": null,
"MaxGracefulFailures": 0,
"SkipRevisionWithInvalidIterationPath": false,
"SkipRevisionWithInvalidAreaPath": false
}
],
"Version": "15.0",
"workaroundForQuerySOAPBugEnabled": false,
"WorkItemTypeDefinition": {
"sourceWorkItemTypeName": "targetWorkItemTypeName"
},
"Endpoints": {
"InMemoryWorkItemEndpoints": [
{
"Name": "Source",
"EndpointEnrichers": null
},
{
"Name": "Target",
"EndpointEnrichers": null
}
]
}
}
The default WorkItemMigrationConfig processor will perform the following operations:
- Migrate iterations and sprints
- Attachments
- Links including source code. Optionally clone the repositories before starting the migration to have links maintained on the initial pass.
How to execute configuration.json with minimal adjustments
Remember to add custom field ‘ReflectedWorkItemId’ to only the target team project before starting migration!
[NOTE!] In older versions of the tool we updated the Source work items with a link back to the Target to make migration easier. This has been removed and replaced with the
FilterWorkItemsThatAlreadyExistInTarget
option instead. You do not need to add the reflected work item ID custom field to the Source environment.
- Adjust the value of the
Collection
attribute for Source and Target - Adjust the value of the
Project
attribute for Source and Target -
Set the
AuthenticationMode
(Prompt
orAccessToken
) for Source and TargetIf you set Authentication mode to
AccessToken
, enter a valid PAT as value for thePersonalAccessToken
attribute, or set thePersonalAccessTokenVariableName
to the name of an environment variable containing your PAT. -
Adjust the value of the
ReflectedWorkItemIDFieldName
attribute (field name of the migration tracking field) for Source and TargetFor example:
TfsMigrationTool.ReflectedWorkItemId
for TFS,ReflectedWorkItemId
for VSTS, orCustom.ReflectedWorkItemId
for Azure DevOps - Enable the
WorkItemMigrationConfig
processor by settingEnabled
totrue
- [OPTIONAL] Modify the
WIQLQueryBit
to migrate only the work items you want. The default WIQL will migrate all open work items and revisions excluding test suites and plans - Adjust the
NodeBasePaths
or leave empty to migrate all nodes - From your working folder run
devopsmigration execute --config .\configuration.json
Remember: If you want a processor to run, its Enabled
attribute must be set to true
.
Refer to the Reference Guide for more details.
Other Configuration Options
When running devopsmigration init
you can also pass --options
with one of the following:
- Full -
- WorkItemTracking -
- Fullv2 -
- WorkItemTrackingv2 -