AzureMigrateDataExtractor 0.1.19
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet tool install --global AzureMigrateDataExtractor --version 0.1.19
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo dotnet tool install --local AzureMigrateDataExtractor --version 0.1.19
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=AzureMigrateDataExtractor&version=0.1.19
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
nuke :add-package AzureMigrateDataExtractor --version 0.1.19
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Azure Migrate Data Extractor
Purpose
A tool to extract data in CSV format from an Azure Migrate project. This tool does not send the data anywhere. It collects it in CSV files on the machine you run it from.
Downloading
Either build from source, use a dotnet global tool
or download the latest executable from the releases.
Releases are currently built for Windows x64 only. Prerequisite of dotnet 8 runtime is required for the exe to run.
Running
#Run as a dotnet global tool
dotnet tool install -g AzureMigrateDataExtractor
dotnet AzureMigrateDataExtractor --tenant-id "<tenant-id>" --subscription-id "<subscription-id>" --resource-group-name "<resource-group-name>" --azure-migrate-project-name "<project-name>" --output-path "<output-path>"
cd <output-path>
dir *.csv
# Run from a win64 single file (needs dotnet 8 runtime installed)
Invoke-WebRequest -Uri 'https://github.com/graemefoster/AzureMigrateDataExtractor/releases/latest/download/AzureMigrateDataExtractor.exe' -OutFile 'c:\temp\AzureMigrateDataExtractor.exe'
cd c:\temp\
.\AzureMigrateDataExtractor.exe --tenant-id "<tenant-id>" --subscription-id "<subscription-id>" --resource-group-name "<resource-group-name>" --azure-migrate-project-name "<project-name>" --output-path "<output-path>"
cd <output-path>
dir *.csv
Output
The tool will generate the following CSV files:
File | Contents |
---|---|
dependencies.csv | Contains the dependencies between the discovered servers. |
databases.csv | Contains discovered sql server / databases |
software.csv | Contains discovered applications and features |
websites.csv | Contains discovered websites |
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.