-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
744 remove azuread dependency #837
Conversation
fixes ➖ ➕ Remove PSNotification, replace AzureAd with Microsoft.Graph #744
$azureADModule = Get-Module -Name "AzureAD" -ListAvailable | ||
if ($null -eq $azureADModule) { | ||
Write-PSFMessage -Level Host -Message "AzureAD module is not installed. Trying to install it now." -Color Yellow | ||
Install-Module -Name "AzureAD" -Force -AllowClobber -Scope CurrentUser | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❓
@Splaxi What do you think about this "just in time" installation of dependencies? I did not have a chance to fully test it yet.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's have a offline chat at some point in time, over the summer - to see where we end up.
For now I'm against JIT installation...
As agreed - I'm taking the task upon me to rewrite the entire cmdlet for |
No description provided.