Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
41,544
Downloads of v 11.8.0.0:
73
Last Update:
15 Nov 2020
Package Maintainer(s):
Software Author(s):
- MrHinsh
Tags:
WIT WorkItem AzureDevOps TFS VSTS VSO VisualStudioOnline DevOps Microsoft TestManagement- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Azure DevOps Migration Tools
This is not the latest version of Azure DevOps Migration Tools available.
- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
41,544
Downloads of v 11.8.0.0:
73
Maintainer(s):
Software Author(s):
- MrHinsh
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
Azure DevOps Migration Tools 11.8.0.0
This is not the latest version of Azure DevOps Migration Tools available.
All Checks are Passing
2 Passing Test
To install Azure DevOps Migration Tools, run the following command from the command line or from PowerShell:
To upgrade Azure DevOps Migration Tools, run the following command from the command line or from PowerShell:
To uninstall Azure DevOps Migration Tools, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download vsts-sync-migrator --internalize --version=11.8.0.0 --source=https://community.chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://community.chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade vsts-sync-migrator -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade vsts-sync-migrator -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure vsts-sync-migrator installed
win_chocolatey:
name: vsts-sync-migrator
state: present
version: 11.8.0.0
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'vsts-sync-migrator' do
action :install
version '11.8.0.0'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: vsts-sync-migrator,
Version: 11.8.0.0,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller vsts-sync-migrator
{
Name = 'vsts-sync-migrator'
Ensure = 'Present'
Version = '11.8.0.0'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'vsts-sync-migrator':
provider => 'chocolatey',
ensure => '11.8.0.0',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install vsts-sync-migrator version="11.8.0.0" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 18 Nov 2020.
Azure Devops Migration Tools allow you to bulk edit data in Microsoft Team Foundation Server (TFS) and Azure DevOps Services. Supports both migration and bulk update scenarios.
$toolsLoc = Get-ToolsLocation
$vstssyncmigrationpath =Join-Path -Path $toolsLoc -ChildPath "\VSTSSyncMigration"
$migrationtoolspath =Join-Path -Path $toolsLoc -ChildPath "\MigrationTools"
if(test-path $vstssyncmigrationpath) {
write-host "Cleaning out the contents of $vstssyncmigrationpath"
Remove-Item "$($vstssyncmigrationpath)\*" -recurse -force -exclude *.json
}
if(test-path $migrationtoolspath) {
write-host "Cleaning out the contents of $migrationtoolspath"
Remove-Item "$($migrationtoolspath)\*" -recurse -force -exclude *.json
}
Install-ChocolateyZipPackage 'MigrationTools' 'https://github.com/nkdAgility/azure-devops-migration-tools/releases/download/v11.8.0/MigrationTools-11.8.0.zip' $migrationtoolspath -Checksum 71E0610BEE31D9F04B5B99FE75C966C75F817CBCDE266271B10533B3A77C0E73 -ChecksumType SHA256
write-host 'Azure DevOps Migration have been installed. Call `migration` from the command line to see options. You may need to close and reopen the command shell.'
Uninstall-ChocolateyZipPackage 'vstssyncmigrator' 'vstssyncmigrator-11.8.0.zip'
Uninstall-ChocolateyZipPackage 'MigrationTools' 'MigrationTools-11.8.0.zip'
write-host 'Azure DevOps Migration Tools has been uninstalled.'
Log in or click on link to see number of positives.
- vsts-sync-migrator.11.8.0.0.nupkg (bf0183d3ef79) - ## / 65
- MigrationTools-11.8.0.zip (71e0610bee31) - ## / 61
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Azure DevOps Migration Tools 11.9.47.0 | 146 | Monday, April 12, 2021 | Approved |
Azure DevOps Migration Tools 11.9.46.0 | 106 | Wednesday, April 7, 2021 | Approved |
Azure DevOps Migration Tools 11.9.45.0 | 62 | Tuesday, April 6, 2021 | Approved |
Azure DevOps Migration Tools 11.9.44.0 | 58 | Tuesday, March 30, 2021 | Approved |
Azure DevOps Migration Tools 11.9.43.0 | 11 | Monday, March 29, 2021 | Approved |
Azure DevOps Migration Tools 11.9.42.0 | 13 | Monday, March 29, 2021 | Approved |
Azure DevOps Migration Tools 11.9.41.0 | 17 | Friday, March 26, 2021 | Approved |
Azure DevOps Migration Tools 11.9.40.0 | 15 | Friday, March 26, 2021 | Approved |
Azure DevOps Migration Tools 11.9.39.0 | 211 | Tuesday, March 16, 2021 | Approved |
Azure DevOps Migration Tools 11.9.38.0 | 17 | Monday, March 15, 2021 | Approved |
Azure DevOps Migration Tools 11.9.37.0 | 99 | Wednesday, March 10, 2021 | Approved |
Azure DevOps Migration Tools 11.9.36.0 | 36 | Tuesday, March 9, 2021 | Approved |
Azure DevOps Migration Tools 11.9.35.0 | 13 | Tuesday, March 9, 2021 | Approved |
Azure DevOps Migration Tools 11.9.34.0 | 21 | Tuesday, March 9, 2021 | Approved |
Azure DevOps Migration Tools 11.9.33.0 | 348 | Sunday, February 14, 2021 | Approved |
Azure DevOps Migration Tools 11.9.32.0 | 11 | Sunday, February 14, 2021 | Approved |
Azure DevOps Migration Tools 11.9.31.0 | 293 | Thursday, January 21, 2021 | Approved |
Azure DevOps Migration Tools 11.9.30.0 | 106 | Friday, January 15, 2021 | Approved |
Azure DevOps Migration Tools 11.9.29.0 | 85 | Tuesday, January 12, 2021 | Approved |
Azure DevOps Migration Tools 11.9.28.0 | 58 | Sunday, January 10, 2021 | Approved |
Azure DevOps Migration Tools 11.9.27.0 | 15 | Sunday, January 10, 2021 | Approved |
Azure DevOps Migration Tools 11.9.26.0 | 112 | Sunday, January 3, 2021 | Approved |
Azure DevOps Migration Tools 11.9.25.0 | 19 | Sunday, January 3, 2021 | Approved |
Azure DevOps Migration Tools 11.9.24.0 | 59 | Wednesday, December 30, 2020 | Approved |
Azure DevOps Migration Tools 11.9.23.0 | 75 | Tuesday, December 22, 2020 | Approved |
Azure DevOps Migration Tools 11.9.22.0 | 21 | Tuesday, December 22, 2020 | Approved |
Azure DevOps Migration Tools 11.9.21.0 | 37 | Monday, December 21, 2020 | Approved |
Azure DevOps Migration Tools 11.9.20.0 | 188 | Friday, December 4, 2020 | Approved |
Azure DevOps Migration Tools 11.9.19.0 | 16 | Friday, December 4, 2020 | Approved |
Azure DevOps Migration Tools 11.9.18.0 | 14 | Friday, December 4, 2020 | Approved |
Azure DevOps Migration Tools 11.9.17.0 | 45 | Thursday, December 3, 2020 | Approved |
Azure DevOps Migration Tools 11.9.16.0 | 28 | Thursday, December 3, 2020 | Approved |
Azure DevOps Migration Tools 11.9.15.0 | 92 | Sunday, November 29, 2020 | Approved |
Azure DevOps Migration Tools 11.9.14.0 | 186 | Thursday, November 26, 2020 | Approved |
Azure DevOps Migration Tools 11.9.13.0 | 14 | Thursday, November 26, 2020 | Approved |
Azure DevOps Migration Tools 11.9.12.0 | 44 | Wednesday, November 25, 2020 | Approved |
Azure DevOps Migration Tools 11.9.11.0 | 14 | Wednesday, November 25, 2020 | Approved |
Azure DevOps Migration Tools 11.9.10.0 | 19 | Wednesday, November 25, 2020 | Approved |
Azure DevOps Migration Tools 11.9.9.0 | 60 | Tuesday, November 24, 2020 | Approved |
Azure DevOps Migration Tools 11.9.8.0 | 14 | Tuesday, November 24, 2020 | Approved |
Azure DevOps Migration Tools 11.9.7.0 | 17 | Tuesday, November 24, 2020 | Approved |
Azure DevOps Migration Tools 11.9.6.0 | 70 | Thursday, November 19, 2020 | Approved |
Azure DevOps Migration Tools 11.9.5.0 | 25 | Thursday, November 19, 2020 | Approved |
Azure DevOps Migration Tools 11.9.4.0 | 24 | Thursday, November 19, 2020 | Approved |
Azure DevOps Migration Tools 11.9.3.0 | 24 | Thursday, November 19, 2020 | Approved |
Azure DevOps Migration Tools 11.9.2.0 | 39 | Wednesday, November 18, 2020 | Approved |
Azure DevOps Migration Tools 11.9.1.0 | 24 | Wednesday, November 18, 2020 | Approved |
Azure DevOps Migration Tools 11.9.0.0 | 46 | Tuesday, November 17, 2020 | Approved |
Azure DevOps Migration Tools 11.8.0.0 | 73 | Sunday, November 15, 2020 | Approved |
Azure DevOps Migration Tools 11.7.7.0 | 17 | Sunday, November 15, 2020 | Approved |
Azure DevOps Migration Tools 11.7.6.0 | 28 | Sunday, November 15, 2020 | Approved |
Azure DevOps Migration Tools 11.7.5.0 | 26 | Saturday, November 14, 2020 | Approved |
Azure DevOps Migration Tools 11.7.4.0 | 21 | Saturday, November 14, 2020 | Approved |
Azure DevOps Migration Tools 11.7.3.0 | 46 | Thursday, November 12, 2020 | Approved |
Azure DevOps Migration Tools 11.7.2.0 | 20 | Thursday, November 12, 2020 | Approved |
Azure DevOps Migration Tools 11.7.1.0 | 35 | Thursday, November 12, 2020 | Approved |
Azure DevOps Migration Tools 11.7.0.0 | 28 | Thursday, November 12, 2020 | Approved |
Azure DevOps Migration Tools 11.6.46.0 | 64 | Wednesday, November 11, 2020 | Approved |
Azure DevOps Migration Tools 11.6.44.0 | 74 | Tuesday, November 10, 2020 | Approved |
Azure DevOps Migration Tools 11.6.43.0 | 26 | Tuesday, November 10, 2020 | Approved |
Azure DevOps Migration Tools 11.6.42.0 | 28 | Tuesday, November 10, 2020 | Approved |
Azure DevOps Migration Tools 11.6.41.0 | 33 | Monday, November 9, 2020 | Approved |
Azure DevOps Migration Tools 11.6.40.0 | 16 | Monday, November 9, 2020 | Approved |
Azure DevOps Migration Tools 11.6.39.0 | 20 | Monday, November 9, 2020 | Approved |
Azure DevOps Migration Tools 11.6.38.0 | 61 | Sunday, November 8, 2020 | Approved |
Azure DevOps Migration Tools 11.6.37.0 | 19 | Sunday, November 8, 2020 | Approved |
Azure DevOps Migration Tools 11.6.36.0 | 28 | Saturday, November 7, 2020 | Approved |
Azure DevOps Migration Tools 11.6.35.0 | 26 | Friday, November 6, 2020 | Approved |
Azure DevOps Migration Tools 11.6.34.0 | 23 | Friday, November 6, 2020 | Approved |
Azure DevOps Migration Tools 11.6.33.0 | 14 | Friday, November 6, 2020 | Approved |
Azure DevOps Migration Tools 11.6.32.0 | 15 | Friday, November 6, 2020 | Approved |
Azure DevOps Migration Tools 11.6.31.0 | 58 | Thursday, November 5, 2020 | Approved |
Azure DevOps Migration Tools 11.6.30.0 | 19 | Thursday, November 5, 2020 | Approved |
Azure DevOps Migration Tools 11.6.29.0 | 28 | Thursday, November 5, 2020 | Approved |
Azure DevOps Migration Tools 11.6.28.0 | 46 | Wednesday, November 4, 2020 | Approved |
Azure DevOps Migration Tools 11.6.27.0 | 23 | Wednesday, November 4, 2020 | Approved |
Azure DevOps Migration Tools 11.6.26.0 | 79 | Tuesday, November 3, 2020 | Approved |
Azure DevOps Migration Tools 11.6.25.0 | 30 | Tuesday, November 3, 2020 | Approved |
Azure DevOps Migration Tools 11.6.24.0 | 19 | Tuesday, November 3, 2020 | Approved |
Azure DevOps Migration Tools 11.6.23.0 | 47 | Monday, November 2, 2020 | Approved |
Azure DevOps Migration Tools 11.6.22.0 | 38 | Sunday, November 1, 2020 | Approved |
Azure DevOps Migration Tools 11.6.21.0 | 27 | Sunday, November 1, 2020 | Approved |
Azure DevOps Migration Tools 11.6.20.0 | 29 | Saturday, October 31, 2020 | Approved |
Azure DevOps Migration Tools 11.6.19.0 | 24 | Saturday, October 31, 2020 | Approved |
Azure DevOps Migration Tools 11.6.18.0 | 26 | Friday, October 30, 2020 | Approved |
Azure DevOps Migration Tools 11.6.17.0 | 19 | Friday, October 30, 2020 | Approved |
Azure DevOps Migration Tools 11.6.16.0 | 23 | Friday, October 30, 2020 | Approved |
Azure DevOps Migration Tools 11.6.15.0 | 20 | Friday, October 30, 2020 | Approved |
Azure DevOps Migration Tools 11.6.14.0 | 14 | Friday, October 30, 2020 | Approved |
Azure DevOps Migration Tools 11.6.13.0 | 14 | Friday, October 30, 2020 | Approved |
Azure DevOps Migration Tools 11.6.12.0 | 19 | Friday, October 30, 2020 | Approved |
Azure DevOps Migration Tools 11.6.11.0 | 101 | Sunday, October 25, 2020 | Approved |
Azure DevOps Migration Tools 11.6.10.0 | 80 | Tuesday, October 20, 2020 | Approved |
Azure DevOps Migration Tools 11.6.9.0 | 21 | Tuesday, October 20, 2020 | Approved |
Azure DevOps Migration Tools 11.6.8.0 | 75 | Friday, October 16, 2020 | Approved |
Azure DevOps Migration Tools 11.6.7.0 | 19 | Friday, October 16, 2020 | Approved |
Azure DevOps Migration Tools 11.6.6.0 | 13 | Friday, October 16, 2020 | Approved |
Azure DevOps Migration Tools 11.6.5.0 | 34 | Thursday, October 15, 2020 | Approved |
Azure DevOps Migration Tools 11.6.4.0 | 86 | Tuesday, October 13, 2020 | Approved |
Azure DevOps Migration Tools 11.6.3.0 | 38 | Monday, October 12, 2020 | Approved |
Azure DevOps Migration Tools 11.6.2.0 | 19 | Monday, October 12, 2020 | Approved |
Azure DevOps Migration Tools 11.6.0.0 | 91 | Friday, October 9, 2020 | Approved |
Azure DevOps Migration Tools 11.5.18.0 | 25 | Friday, October 9, 2020 | Approved |
Azure DevOps Migration Tools 11.5.17.0 | 60 | Thursday, October 8, 2020 | Approved |
Azure DevOps Migration Tools 11.5.16.0 | 25 | Thursday, October 8, 2020 | Approved |
Azure DevOps Migration Tools 11.5.15.0 | 40 | Wednesday, October 7, 2020 | Approved |
Azure DevOps Migration Tools 11.5.14.0 | 35 | Wednesday, October 7, 2020 | Approved |
Azure DevOps Migration Tools 11.5.13.0 | 69 | Tuesday, October 6, 2020 | Approved |
Azure DevOps Migration Tools 11.5.12.0 | 28 | Tuesday, October 6, 2020 | Approved |
Azure DevOps Migration Tools 11.5.11.0 | 52 | Monday, October 5, 2020 | Approved |
Azure DevOps Migration Tools 11.5.10.0 | 25 | Monday, October 5, 2020 | Approved |
Azure DevOps Migration Tools 11.5.9.0 | 23 | Monday, October 5, 2020 | Approved |
Azure DevOps Migration Tools 11.5.8.0 | 17 | Monday, October 5, 2020 | Approved |
Azure DevOps Migration Tools 11.5.7.0 | 36 | Monday, October 5, 2020 | Approved |
Azure DevOps Migration Tools 11.5.6.0 | 52 | Sunday, October 4, 2020 | Approved |
Azure DevOps Migration Tools 11.5.5.0 | 27 | Saturday, October 3, 2020 | Approved |
Azure DevOps Migration Tools 11.5.4.0 | 24 | Saturday, October 3, 2020 | Approved |
Azure DevOps Migration Tools 11.5.3.0 | 27 | Saturday, October 3, 2020 | Approved |
Azure DevOps Migration Tools 11.5.2.0 | 18 | Saturday, October 3, 2020 | Approved |
Azure DevOps Migration Tools 11.5.1.0 | 22 | Saturday, October 3, 2020 | Approved |
Azure DevOps Migration Tools 11.5.0.0 | 20 | Saturday, October 3, 2020 | Approved |
Azure DevOps Migration Tools 11.4.3.0 | 28 | Saturday, October 3, 2020 | Approved |
Azure DevOps Migration Tools 11.4.2.0 | 28 | Saturday, October 3, 2020 | Approved |
Azure DevOps Migration Tools 11.4.1.0 | 31 | Friday, October 2, 2020 | Approved |
Azure DevOps Migration Tools 11.4.0.0 | 23 | Friday, October 2, 2020 | Approved |
Azure DevOps Migration Tools 11.3.3.0 | 21 | Friday, October 2, 2020 | Approved |
Azure DevOps Migration Tools 11.3.2.0 | 24 | Friday, October 2, 2020 | Approved |
Azure DevOps Migration Tools 11.3.1.0 | 23 | Friday, October 2, 2020 | Approved |
Azure DevOps Migration Tools 11.3.0.0 | 23 | Friday, October 2, 2020 | Approved |
Azure DevOps Migration Tools 11.2.1.0 | 16 | Friday, October 2, 2020 | Approved |
Azure DevOps Migration Tools 11.2.0.0 | 66 | Wednesday, September 30, 2020 | Approved |
Azure DevOps Migration Tools 11.1.4.0 | 26 | Wednesday, September 30, 2020 | Approved |
Azure DevOps Migration Tools 11.1.3.0 | 19 | Wednesday, September 30, 2020 | Approved |
Azure DevOps Migration Tools 11.1.2.0 | 30 | Wednesday, September 30, 2020 | Approved |
Azure DevOps Migration Tools 11.1.1.0 | 40 | Tuesday, September 29, 2020 | Approved |
Azure DevOps Migration Tools 11.1.0.0 | 31 | Tuesday, September 29, 2020 | Approved |
Azure DevOps Migration Tools 11.0.2.0 | 54 | Tuesday, September 29, 2020 | Approved |
Azure DevOps Migration Tools 11.0.1.0 | 50 | Sunday, September 27, 2020 | Approved |
Azure DevOps Migration Tools 11.0.0.0 | 26 | Sunday, September 27, 2020 | Approved |
Azure DevOps Migration Tools 10.2.13.0 | 24 | Sunday, September 27, 2020 | Approved |
Azure DevOps Migration Tools 10.2.12.0 | 25 | Sunday, September 27, 2020 | Approved |
Azure DevOps Migration Tools 10.2.11.0 | 35 | Sunday, September 27, 2020 | Approved |
Azure DevOps Migration Tools 10.2.10.0 | 35 | Friday, September 25, 2020 | Approved |
Azure DevOps Migration Tools 10.2.9.0 | 33 | Friday, September 25, 2020 | Approved |
Azure DevOps Migration Tools 10.2.8.0 | 50 | Thursday, September 24, 2020 | Approved |
Azure DevOps Migration Tools 10.2.7.0 | 30 | Thursday, September 24, 2020 | Approved |
Azure DevOps Migration Tools 10.2.6.0 | 41 | Thursday, September 24, 2020 | Approved |
Azure DevOps Migration Tools 10.2.5.0 | 54 | Wednesday, September 23, 2020 | Approved |
Azure DevOps Migration Tools 10.2.4.0 | 77 | Tuesday, September 22, 2020 | Approved |
Azure DevOps Migration Tools 10.2.3.0 | 38 | Tuesday, September 22, 2020 | Approved |
Azure DevOps Migration Tools 10.2.2 | 70 | Sunday, September 20, 2020 | Approved |
Azure DevOps Migration Tools 10.2.1 | 39 | Friday, September 18, 2020 | Approved |
Azure DevOps Migration Tools 10.2.0 | 64 | Wednesday, September 16, 2020 | Approved |
Azure DevOps Migration Tools 10.1.1 | 35 | Wednesday, September 16, 2020 | Approved |
Azure DevOps Migration Tools 10.1.0 | 75 | Monday, September 14, 2020 | Approved |
Azure DevOps Migration Tools 10.0.10 | 32 | Monday, September 14, 2020 | Approved |
Azure DevOps Migration Tools 10.0.9 | 23 | Monday, September 14, 2020 | Approved |
Azure DevOps Migration Tools 10.0.8 | 50 | Friday, September 11, 2020 | Approved |
Azure DevOps Migration Tools 10.0.7 | 48 | Thursday, September 10, 2020 | Approved |
Azure DevOps Migration Tools 10.0.6 | 31 | Thursday, September 10, 2020 | Approved |
Azure DevOps Migration Tools 10.0.5 | 28 | Thursday, September 10, 2020 | Approved |
Azure DevOps Migration Tools 10.0.4 | 52 | Wednesday, September 9, 2020 | Approved |
Azure DevOps Migration Tools 10.0.3 | 29 | Wednesday, September 9, 2020 | Approved |
Azure DevOps Migration Tools 10.0.2 | 54 | Tuesday, September 8, 2020 | Approved |
Azure DevOps Migration Tools 10.0.1 | 51 | Tuesday, September 8, 2020 | Approved |
Azure DevOps Migration Tools 10.0.0 | 68 | Monday, September 7, 2020 | Approved |
Azure DevOps Migration Tools 9.3.1 | 50 | Monday, September 7, 2020 | Approved |
Azure DevOps Migration Tools 9.3.0 | 51 | Friday, September 4, 2020 | Approved |
Azure DevOps Migration Tools 9.2.0 | 220 | Friday, August 21, 2020 | Approved |
Azure DevOps Migration Tools 9.1.1 | 151 | Thursday, August 13, 2020 | Approved |
Azure DevOps Migration Tools 9.1.0 | 44 | Thursday, August 13, 2020 | Approved |
Azure DevOps Migration Tools 9.0.1 | 40 | Thursday, August 13, 2020 | Approved |
Azure DevOps Migration Tools 8.9.10 | 164 | Thursday, August 6, 2020 | Approved |
Azure DevOps Migration Tools 8.9.9 | 51 | Thursday, August 6, 2020 | Approved |
Azure DevOps Migration Tools 8.9.8 | 43 | Thursday, August 6, 2020 | Approved |
Azure DevOps Migration Tools 8.9.7 | 348 | Thursday, July 9, 2020 | Approved |
Azure DevOps Migration Tools 8.9.6 | 125 | Thursday, July 2, 2020 | Approved |
Azure DevOps Migration Tools 8.9.5 | 284 | Sunday, June 14, 2020 | Approved |
Azure DevOps Migration Tools 8.9.4 | 74 | Sunday, June 14, 2020 | Approved |
Azure DevOps Migration Tools 8.9.3 | 64 | Sunday, June 14, 2020 | Approved |
Azure DevOps Migration Tools 8.9.2 | 649 | Thursday, April 9, 2020 | Approved |
Azure DevOps Migration Tools 8.9.1 | 278 | Tuesday, March 17, 2020 | Approved |
Azure DevOps Migration Tools 8.9.0 | 70 | Tuesday, March 17, 2020 | Approved |
Azure DevOps Migration Tools 8.8.0 | 388 | Friday, February 21, 2020 | Approved |
Azure DevOps Migration Tools 8.7.3 | 102 | Wednesday, February 19, 2020 | Approved |
Azure DevOps Migration Tools 8.7.2 | 436 | Friday, January 17, 2020 | Approved |
Azure DevOps Migration Tools 8.7.1 | 68 | Friday, January 17, 2020 | Approved |
Azure DevOps Migration Tools 8.7.0 | 194 | Tuesday, January 7, 2020 | Approved |
Azure DevOps Migration Tools 8.6.9 | 210 | Tuesday, December 17, 2019 | Approved |
Azure DevOps Migration Tools 8.6.8 | 84 | Tuesday, December 17, 2019 | Approved |
Azure DevOps Migration Tools 8.6.7 | 70 | Tuesday, December 17, 2019 | Approved |
Azure DevOps Migration Tools 8.6.6 | 197 | Monday, December 9, 2019 | Approved |
Azure DevOps Migration Tools 8.6.5 | 69 | Sunday, December 8, 2019 | Approved |
Azure DevOps Migration Tools 8.6.4 | 66 | Sunday, December 8, 2019 | Approved |
Azure DevOps Migration Tools 8.6.3 | 91 | Sunday, December 8, 2019 | Approved |
Azure DevOps Migration Tools 8.6.2 | 253 | Wednesday, November 20, 2019 | Approved |
Azure DevOps Migration Tools 8.6.1 | 72 | Wednesday, November 20, 2019 | Approved |
Azure DevOps Migration Tools 8.6.0 | 56 | Wednesday, November 20, 2019 | Approved |
Azure DevOps Migration Tools 8.5.5 | 153 | Monday, November 18, 2019 | Approved |
Azure DevOps Migration Tools 8.5.4 | 68 | Monday, November 18, 2019 | Approved |
Azure DevOps Migration Tools 8.5.3 | 222 | Thursday, November 7, 2019 | Approved |
Azure DevOps Migration Tools 8.5.2 | 54 | Thursday, November 7, 2019 | Approved |
Azure DevOps Migration Tools 8.5.1 | 131 | Friday, November 1, 2019 | Approved |
Azure DevOps Migration Tools 8.5.0 | 72 | Thursday, October 31, 2019 | Approved |
Azure DevOps Migration Tools 8.4.7 | 79 | Thursday, October 31, 2019 | Approved |
Azure DevOps Migration Tools 8.4.6 | 66 | Thursday, October 31, 2019 | Approved |
Azure DevOps Migration Tools 8.4.5 | 61 | Thursday, October 31, 2019 | Approved |
Azure DevOps Migration Tools 8.4.4 | 61 | Thursday, October 31, 2019 | Approved |
Azure DevOps Migration Tools 8.4.3 | 123 | Monday, October 28, 2019 | Approved |
Azure DevOps Migration Tools 8.4.2 | 114 | Friday, October 25, 2019 | Approved |
Azure DevOps Migration Tools 8.3.3 | 225 | Saturday, October 12, 2019 | Approved |
Azure DevOps Migration Tools 8.3.2 | 75 | Friday, October 11, 2019 | Approved |
Azure DevOps Migration Tools 8.3.1 | 86 | Friday, October 11, 2019 | Approved |
Azure DevOps Migration Tools 8.3.0 | 94 | Friday, October 11, 2019 | Approved |
Azure DevOps Migration Tools 8.2.6 | 94 | Thursday, October 10, 2019 | Approved |
Azure DevOps Migration Tools 8.2.5 | 81 | Thursday, October 10, 2019 | Approved |
Azure DevOps Migration Tools 8.2.4 | 95 | Tuesday, October 8, 2019 | Approved |
Azure DevOps Migration Tools 8.2.3 | 79 | Tuesday, October 8, 2019 | Approved |
Azure DevOps Migration Tools 8.2.2 | 81 | Tuesday, October 8, 2019 | Approved |
Azure DevOps Migration Tools 8.2.1 | 59 | Tuesday, October 8, 2019 | Approved |
Azure DevOps Migration Tools 8.2.0 | 75 | Tuesday, October 8, 2019 | Approved |
Azure DevOps Migration Tools 8.1.9 | 78 | Monday, October 7, 2019 | Approved |
Azure DevOps Migration Tools 8.1.8 | 69 | Monday, October 7, 2019 | Approved |
Azure DevOps Migration Tools 8.1.7 | 66 | Monday, October 7, 2019 | Approved |
Azure DevOps Migration Tools 8.1.6 | 78 | Monday, October 7, 2019 | Approved |
Azure DevOps Migration Tools 8.1.5 | 69 | Monday, October 7, 2019 | Approved |
Azure DevOps Migration Tools 8.1.4 | 77 | Monday, October 7, 2019 | Approved |
Azure DevOps Migration Tools 8.1.3 | 106 | Saturday, October 5, 2019 | Approved |
Azure DevOps Migration Tools 8.1.2 | 140 | Monday, September 30, 2019 | Approved |
Azure DevOps Migration Tools 8.1.1 | 87 | Saturday, September 28, 2019 | Approved |
Azure DevOps Migration Tools 8.1.0 | 105 | Saturday, September 28, 2019 | Approved |
Azure DevOps Migration Tools 8.0.17 | 70 | Saturday, September 28, 2019 | Approved |
Azure DevOps Migration Tools 8.0.16 | 70 | Saturday, September 28, 2019 | Approved |
Azure DevOps Migration Tools 8.0.15 | 70 | Saturday, September 28, 2019 | Approved |
Azure DevOps Migration Tools 8.0.14 | 75 | Saturday, September 28, 2019 | Approved |
Azure DevOps Migration Tools 8.0.13 | 114 | Thursday, September 26, 2019 | Approved |
Azure DevOps Migration Tools 8.0.12 | 101 | Wednesday, September 25, 2019 | Approved |
Azure DevOps Migration Tools 8.0.11 | 73 | Tuesday, September 24, 2019 | Approved |
Azure DevOps Migration Tools 8.0.10 | 114 | Tuesday, September 24, 2019 | Approved |
Azure DevOps Migration Tools 8.0.9 | 100 | Tuesday, September 24, 2019 | Approved |
Azure DevOps Migration Tools 8.0.8 | 66 | Tuesday, September 24, 2019 | Approved |
Azure DevOps Migration Tools 8.0.0 | 176 | Wednesday, September 18, 2019 | Approved |
Azure DevOps Migration Tools 7.5.73 | 103 | Tuesday, September 17, 2019 | Approved |
Azure DevOps Migration Tools 7.5.72 | 64 | Tuesday, September 17, 2019 | Approved |
Azure DevOps Migration Tools 7.5.71 | 758 | Tuesday, July 2, 2019 | Approved |
Azure DevOps Migration Tools 7.5.70 | 119 | Tuesday, July 2, 2019 | Approved |
Azure DevOps Migration Tools 7.5.69 | 78 | Tuesday, July 2, 2019 | Approved |
Azure DevOps Migration Tools 7.5.68 | 103 | Tuesday, July 2, 2019 | Approved |
Azure DevOps Migration Tools 7.5.67 | 92 | Tuesday, July 2, 2019 | Approved |
Azure DevOps Migration Tools 7.5.66 | 686 | Tuesday, April 23, 2019 | Approved |
Azure DevOps Migration Tools 7.5.65 | 412 | Wednesday, March 20, 2019 | Approved |
Azure DevOps Migration Tools 7.5.64 | 112 | Wednesday, March 20, 2019 | Approved |
Azure DevOps Migration Tools 7.5.63 | 138 | Tuesday, March 19, 2019 | Approved |
Azure DevOps Migration Tools 7.5.62 | 93 | Monday, March 18, 2019 | Approved |
Azure DevOps Migration Tools 7.5.61 | 90 | Monday, March 18, 2019 | Approved |
Azure DevOps Migration Tools 7.5.60 | 228 | Tuesday, March 5, 2019 | Approved |
Azure DevOps Migration Tools 7.5.59 | 90 | Tuesday, March 5, 2019 | Approved |
Azure DevOps Migration Tools 7.5.58 | 133 | Friday, March 1, 2019 | Approved |
Azure DevOps Migration Tools 7.5.57 | 98 | Friday, March 1, 2019 | Approved |
Azure DevOps Migration Tools 7.5.56 | 85 | Friday, March 1, 2019 | Approved |
Azure DevOps Migration Tools 7.5.55 | 693 | Friday, December 7, 2018 | Approved |
Azure DevOps Migration Tools 7.5.54 | 251 | Friday, November 23, 2018 | Approved |
Azure DevOps Migration Tools 7.5.53 | 132 | Friday, November 23, 2018 | Approved |
Azure DevOps Migration Tools 7.5.52 | 180 | Friday, November 16, 2018 | Approved |
Azure DevOps Migration Tools 7.5.51 | 108 | Friday, November 16, 2018 | Approved |
Azure DevOps Migration Tools 7.5.50 | 129 | Thursday, November 15, 2018 | Approved |
Azure DevOps Migration Tools 7.5.49 | 439 | Tuesday, October 9, 2018 | Approved |
Azure DevOps Migration Tools 7.5.48 | 186 | Thursday, October 4, 2018 | Approved |
Azure DevOps Migration Tools 7.5.47 | 125 | Thursday, October 4, 2018 | Approved |
Azure DevOps Migration Tools 7.5.46 | 254 | Thursday, September 20, 2018 | Approved |
Azure DevOps Migration Tools 7.5.45 | 140 | Thursday, September 20, 2018 | Approved |
Azure DevOps Migration Tools 7.5.44 | 118 | Thursday, September 20, 2018 | Approved |
Azure DevOps Migration Tools 7.5.43 | 143 | Wednesday, September 19, 2018 | Approved |
VSTS Sync Migrator 7.5.42 | 211 | Thursday, September 6, 2018 | Approved |
VSTS Sync Migrator 7.5.41 | 140 | Tuesday, September 4, 2018 | Approved |
VSTS Sync Migrator 7.5.40 | 394 | Saturday, July 21, 2018 | Approved |
VSTS Sync Migrator 7.5.39 | 256 | Monday, July 16, 2018 | Approved |
VSTS Sync Migrator 7.5.38 | 189 | Thursday, July 12, 2018 | Approved |
VSTS Sync Migrator 7.5.37 | 378 | Monday, June 11, 2018 | Approved |
VSTS Sync Migrator 7.5.36 | 307 | Thursday, May 24, 2018 | Approved |
VSTS Sync Migrator 7.5.35 | 262 | Saturday, May 5, 2018 | Approved |
VSTS Sync Migrator 7.5.34 | 184 | Saturday, May 5, 2018 | Approved |
VSTS Sync Migrator 7.5.33 | 195 | Tuesday, May 1, 2018 | Approved |
VSTS Sync Migrator 7.5.32 | 258 | Wednesday, April 25, 2018 | Approved |
VSTS Sync Migrator 7.5.31 | 387 | Thursday, March 29, 2018 | Approved |
VSTS Sync Migrator 7.5.30 | 251 | Friday, March 23, 2018 | Approved |
VSTS Sync Migrator 7.5.29 | 335 | Thursday, March 8, 2018 | Approved |
VSTS Sync Migrator 7.5.28 | 291 | Friday, February 23, 2018 | Approved |
VSTS Sync Migrator 7.5.27 | 230 | Friday, February 23, 2018 | Approved |
VSTS Sync Migrator 7.5.26 | 248 | Wednesday, February 21, 2018 | Approved |
VSTS Sync Migrator 7.5.25 | 416 | Friday, January 12, 2018 | Approved |
VSTS Sync Migrator 7.5.24 | 251 | Thursday, January 4, 2018 | Approved |
VSTS Sync Migrator 7.5.23 | 249 | Saturday, December 30, 2017 | Approved |
VSTS Sync Migrator 7.5.22 | 220 | Saturday, December 30, 2017 | Approved |
VSTS Sync Migrator 7.5.21 | 229 | Friday, December 29, 2017 | Approved |
VSTS Sync Migrator 7.5.20 | 233 | Thursday, December 28, 2017 | Approved |
VSTS Sync Migrator 7.5.19 | 305 | Tuesday, December 19, 2017 | Approved |
VSTS Sync Migrator 7.5.18 | 274 | Thursday, December 7, 2017 | Approved |
VSTS Sync Migrator 7.5.17 | 298 | Saturday, November 25, 2017 | Approved |
VSTS Sync Migrator 7.5.16 | 225 | Saturday, November 25, 2017 | Approved |
VSTS Sync Migrator 7.5.15 | 401 | Thursday, October 19, 2017 | Approved |
VSTS Sync Migrator 7.5.14 | 273 | Thursday, October 12, 2017 | Approved |
VSTS Sync Migrator 7.5.13 | 244 | Thursday, October 12, 2017 | Approved |
VSTS Sync Migrator 7.5.12 | 275 | Wednesday, October 4, 2017 | Approved |
VSTS Sync Migrator 7.5.11 | 314 | Thursday, September 21, 2017 | Approved |
VSTS Sync Migrator 7.5.10 | 221 | Thursday, September 21, 2017 | Approved |
VSTS Sync Migrator 7.5.9 | 272 | Monday, September 18, 2017 | Approved |
VSTS Sync Migrator 7.5.8 | 238 | Monday, September 18, 2017 | Approved |
VSTS Sync Migrator 7.5.7 | 222 | Monday, September 18, 2017 | Approved |
VSTS Sync Migrator 7.5.6 | 324 | Monday, August 28, 2017 | Approved |
VSTS Sync Migrator 7.5.5 | 255 | Tuesday, August 22, 2017 | Approved |
VSTS Sync Migrator 7.5.3 | 254 | Wednesday, August 16, 2017 | Approved |
VSTS Sync Migrator 7.5.2 | 235 | Wednesday, August 16, 2017 | Approved |
VSTS Sync Migrator 7.5.1 | 256 | Tuesday, August 15, 2017 | Approved |
VSTS Sync Migrator 7.5.0 | 245 | Saturday, August 12, 2017 | Approved |
VSTS Sync Migrator 7.4.2 | 216 | Saturday, August 12, 2017 | Approved |
VSTS Sync Migrator 7.4.1 | 253 | Thursday, August 10, 2017 | Approved |
VSTS Sync Migrator 7.4.0 | 279 | Tuesday, August 1, 2017 | Approved |
VSTS Sync Migrator 7.2.0 | 228 | Tuesday, August 1, 2017 | Approved |
VSTS Sync Migrator 7.1.8 | 293 | Wednesday, July 19, 2017 | Approved |
VSTS Sync Migrator 7.1.7 | 300 | Wednesday, June 14, 2017 | Approved |
VSTS Sync Migrator 7.1.1 | 242 | Monday, June 12, 2017 | Approved |
VSTS Sync Migrator 7.1.0 | 222 | Monday, June 12, 2017 | Approved |
VSTS Sync Migrator 7.0.2 | 352 | Friday, April 28, 2017 | Approved |
VSTS Sync Migrator 7.0.1 | 277 | Friday, April 7, 2017 | Approved |
VSTS Sync Migrator 7.0.0 | 309 | Wednesday, March 8, 2017 | Approved |
VSTS Sync Migrator 6.3.1 | 277 | Thursday, February 23, 2017 | Approved |
VSTS Sync Migrator 6.3.0 | 278 | Monday, February 13, 2017 | Approved |
VSTS Sync Migrator 6.2.0 | 275 | Wednesday, January 25, 2017 | Approved |
VSTS Sync Migrator 6.1.0 | 255 | Tuesday, January 24, 2017 | Approved |
VSTS Sync Migrator 6.0.2 | 300 | Monday, January 2, 2017 | Approved |
VSTS Sync Migrator 6.0.1 | 337 | Tuesday, November 22, 2016 | Approved |
VSTS Sync Migrator 6.0.0 | 248 | Thursday, November 10, 2016 | Approved |
VSTS Sync Migrator 5.3.2 | 306 | Monday, October 24, 2016 | Approved |
VSTS Sync Migrator 5.3.0 | 223 | Friday, October 21, 2016 | Approved |
VSTS Sync Migrator 5.1.0 | 332 | Wednesday, October 19, 2016 | Approved |
VSTS Sync Migrator 5.0.0 | 311 | Tuesday, October 18, 2016 | Approved |
VSTS Sync Migrator 4.4.0 | 334 | Tuesday, October 18, 2016 | Approved |
VSTS Sync Migrator 4.3.0 | 263 | Monday, October 17, 2016 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Azure DevOps Migration Tools and the Azure DevOps Migration Tools package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Azure DevOps Migration Tools, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.