/AzStorage-FilesMigrator

Simple PowerShell Tool that utilizes AzCopy to help customers migrate folders between Azure Files Shares. Designed to aid AVD user expanding their footprint

Primary LanguagePowerShellMIT LicenseMIT

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