This blog help to move analysis backup file move into ADLS location .
We have power shell scripts below, we have used azcopy activity which we have install on local machine.
We have used SAS token to get access into ADLS location .
$mnname=(get-date).ToString("ddMMyyy")
$sourcefolder="E:\MS Analysis Services\Backup"
$destination="https://servername.blob.core.windows.net/cubedatabasebackup/"+$mnname+"?sp=racwlep&st=2021-06-10T06:22:30Z&se=2022-04-09T14:22:30Z&spr=https&sv=2020-02-10&sr=c&sig=key"
azcopy cp $sourcefolder $destination --recursive