If you don't do a lot of powershell then the instructions on how to install the AzFilesHybrid module can be lacking. Here is how to do it
- Download the module from https://github.com/Azure-Samples/azure-files-samples/releases
- Unzip the file downloaded in step 1
- Go into the folder and run the copy command
- Install the module with
1
| Install-Module -Name AzFilesHybrid -Force
|
With this module installed you can then run things like Join-AzStorageAccount to get a fileshare joined to the domain
1
| Join-AzStorageAccount -ResourceGroupName "rg-azfileshare" -StorageAccountName "sa-azfileshare" -DomainName "somedomain.com" -DomainUserName "jane" -DomainUserPassword "password"
|