Greetings...
I am trying to authenticate my credentials using Azure Active Directory to write files to Azure File Share from my windows server. I am using the below cmdlet
cmdlet:
Install-Module AzureAD
Import-Module AzureAD
Connect-AzureAD
Get-AzureADUser
Error:
Connect-AzureAD : The term 'Connect-AzureAD' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
Not sure what all packages are required and where do I find them.
The below cmdlet shows what I have installed but when I search for the string AzureAD
nothing is returned.
(Get-Module -ListAvailable AzureAD*).path
I tried installing module MSOnline
and no luck.
install-module MSOnline
Thank you