Skip to content

Latest commit

 

History

History
20 lines (11 loc) · 734 Bytes

README.md

File metadata and controls

20 lines (11 loc) · 734 Bytes

AzStorage-FilesMigrator

Prerequisites

  • Current Version of Azure Powershell
  • User running script must be logged into Azure Powershell with the appropriate RBAC permissions to work with Azure Storage Accounts and File Shares

How to run

To run this PowerShell Script from Powershell on yout local machine run the command below -

Invoke-Expression $(Invoke-WebRequest -uri aka.ms/azfilescopyps -UseBasicParsing).Content

or the shorthand version

iwr -useb aka.ms/azfilescopyps | iex

To download a local copy of the latest version of the script run the command below -

Invoke-WebRequest -Uri aka.ms/azfilescopyps -OutFile Run-AzFilesMigrator.ps1