Added getting started with PowerShell module (#76)

* Added getting started with PowerShell module

* Changed bullet list number
This commit is contained in:
Damien Caro 2021-02-21 23:34:53 -08:00 коммит произвёл GitHub
Родитель f1e26bb7a8
Коммит 93e401c8bf
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 19 добавлений и 0 удалений

Просмотреть файл

@ -5,6 +5,7 @@ script modules from AzureRM to the Az PowerShell module.
## Contents
* [Getting started](#getting-started)
* [Description](#description)
* [Usage Instructions](#usage-instructions)
* [Limitations](#limitations)
@ -17,6 +18,24 @@ The Az.Tools.Migration PowerShell module contains cmdlets that perform the follo
1. Generate an upgrade plan to convert AzureRM module references to Az module commands.
1. Execute the upgrade plan to modify your PowerShell codebase.
## Getting started
You can use either method to use this module:
1. Install this module from the [PowerShell gallery](https://www.powershellgallery.com/packages/Az.Tools.Migration).
```
Install-Module -Name Az.Tools.Migration
```
2. Clone this repository and import the module locally.
Use this option if you want to make changes to the module and test it out.
```
git clone https://github.com/Azure/azure-powershell-migration.git
import-module './azure-powershell-migration/powershell-module/Az.Tools.Migration/Az.Tools.Migration.psd1'
```
## Usage Instructions
### Requirements