Skip to content
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

Connect-MgGraph -Identity does not work in 2.9.0 #2435

Closed
anewhouse opened this issue Nov 13, 2023 · 1 comment
Closed

Connect-MgGraph -Identity does not work in 2.9.0 #2435

anewhouse opened this issue Nov 13, 2023 · 1 comment

Comments

@anewhouse
Copy link

Describe the bug
After 2.9.0 was released, my Azure Function App's managed identity was unable to get a token. When we rolled the Graph modules back to version 2.8.0 it started working again

To Reproduce
Steps to reproduce the behavior:

  1. Add one or more Microsoft.Graph modules to requirements.psd1 in an Azure Function App:
@{
    'Microsoft.Graph.Authentication' = '2.*'
    'Microsoft.Graph.DeviceManagement' = '2.*'
}
  1. Enable the Managed Identity for the function app and grant it the necessary Graph permissions
  2. Add Connect-MgGraph -Identity to the profile.ps1 file in the function app
  3. Start the log stream, then call a function
  4. See the error message in the logs
  5. Edit requirements.psd1 to specify version 2.8.0 instead of 2.* and see that it works now

Expected behavior
The managed identity should successfully connect to Microsoft Graph

Debug Output

Error from the function app log:
2023-11-13T22:14:26.765 [Error] ERROR: ManagedIdentityCredential authentication failed: Could not load file or assembly 'System.Memory.Data, Version=1.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified.See the troubleshooting guide for more information. https://aka.ms/azsdk/net/identity/managedidentitycredential/troubleshootException :Type : Azure.Identity.AuthenticationFailedExceptionTargetSite :Name : FailWrapAndThrowDeclaringType : Azure.Identity.CredentialDiagnosticScope, Azure.Identity, Version=1.10.3.0, Culture=neutral, PublicKeyToken=92742159e12e44c8MemberType : MethodModule : Azure.Identity.dllMessage : ManagedIdentityCredential authentication failed: Could not load file or assembly 'System.Memory.Data, Version=1.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified.See the troubleshooting guide for more information. https://aka.ms/azsdk/net/identity/managedidentitycredential/troubleshootInnerException :Type : System.IO.FileNotFoundExceptionMessage : Could not load file or assembly 'System.Memory.Data, Version=1.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified.FileName : System.Memory.Data, Version=1.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51TargetSite :Name : MoveNextDeclaringType : Azure.Identity.ManagedIdentitySource+<HandleResponseAsync>d__11, Azure.Identity, Version=1.10.3.0, Culture=neutral, PublicKeyToken=92742159e12e44c8MemberType : MethodModule : Azure.Identity.dllSource : Azure.IdentityHResult : -2147024894StackTrace :at Azure.Identity.ManagedIdentitySource.HandleResponseAsync(Boolean async, TokenRequestContext context, Response response, CancellationToken cancellationToken)at System.Runtime.CompilerServices.AsyncMethodBuilderCore.Start[TStateMachine](TStateMachine& stateMachine)at Azure.Identity.ManagedIdentitySource.HandleResponseAsync(Boolean async, TokenRequestContext context, Response response, CancellationToken cancellationToken)at Azure.Identity.ManagedIdentitySource.AuthenticateAsync(Boolean async, TokenRequestContext context, CancellationToken cancellationToken)at Azure.Identity.ManagedIdentityClient.AuthenticateCoreAsync(Boolean async, TokenRequestContext context, CancellationToken cancellationToken)at Azure.Identity.ManagedIdentityClient.AppTokenProviderImpl(AppTokenProviderParameters parameters)at Microsoft.Identity.Client.Internal.Requests.ClientCredentialRequest.SendTokenRequestToAppTokenProviderAsync(ILoggerAdapter logger, CancellationToken cancellationToken)at Microsoft.Identity.Client.Internal.Requests.ClientCredentialRequest.GetAccessTokenAsync(CancellationToken cancellationToken, ILoggerAdapter logger)at Microsoft.Identity.Client.Internal.Requests.ClientCredentialRequest.ExecuteAsync(CancellationToken cancellationToken)at Microsoft.Identity.Client.Internal.Requests.RequestBase.RunAsync(CancellationToken cancellationToken)at Microsoft.Identity.Client.ApiConfig.Executors.ConfidentialClientExecutor.ExecuteAsync(AcquireTokenCommonParameters commonParameters, AcquireTokenForClientParameters clientParameters, CancellationToken cancellationToken)at Azure.Identity.AbstractAcquireTokenParameterBuilderExtensions.ExecuteAsync[T](AbstractAcquireTokenParameterBuilder'1 builder, Boolean async, CancellationToken cancellationToken)at Azure.Identity.MsalConfidentialClient.AcquireTokenForClientCoreAsync(String[] scopes, String tenantId, Boolean enableCae, Boolean async, CancellationToken cancellationToken)at Azure.Identity.MsalConfidentialClient.AcquireTokenForClientAsync(String[] scopes, String tenantId, Boolean enableCae, Boolean async, CancellationToken cancellationToken)at Azure.Identity.ManagedIdentityClient.AuthenticateAsync(Boolean async, TokenRequestContext context, CancellationToken cancellationToken)at Azure.Identity.ManagedIdentityCredential.GetTokenImplAsync(Boolean async, TokenRequestContext requestContext, CancellationToken cancellationToken)Source : Azure.IdentityHResult : -2146233088StackTrace :at Azure.Identity.CredentialDiagnosticScope.FailWrapAndThrow(Exception ex, String additionalMessage, Boolean isCredentialUnavailable)at Azure.Identity.ManagedIdentityCredential.GetTokenImplAsync(Boolean async, TokenRequestContext requestContext, CancellationToken cancellationToken)at Azure.Identity.ManagedIdentityCredential.GetTokenAsync(TokenRequestContext requestContext, CancellationToken cancellationToken)at Microsoft.Graph.PowerShell.Authentication.Core.Utilities.AuthenticationHelpers.SignInAsync(IAuthContext authContext, CancellationToken cancellationToken)at Microsoft.Graph.PowerShell.Authentication.Core.Utilities.AuthenticationHelpers.AuthenticateAsync(IAuthContext authContext, CancellationToken cancellationToken)at Microsoft.Graph.PowerShell.Authentication.Cmdlets.ConnectMgGraph.ProcessRecordAsync()at Microsoft.Graph.PowerShell.Authentication.Cmdlets.ConnectMgGraph.ProcessRecordAsync()CategoryInfo : NotSpecified: (:) [Connect-MgGraph], AuthenticationFailedExceptionFullyQualifiedErrorId : Microsoft.Graph.PowerShell.Authentication.Cmdlets.ConnectMgGraphInvocationInfo :MyCommand : Connect-MgGraphScriptLineNumber : 8OffsetInLine : 1HistoryId : 1ScriptName : C:\home\site\wwwroot\Get-UserGroups\run.ps1Line : Connect-MgGraph -Identity -DebugPositionMessage : At C:\home\site\wwwroot\Get-UserGroups\run.ps1:8 char:1+ Connect-MgGraph -Identity -Debug+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~PSScriptRoot : C:\home\site\wwwroot\Get-UserGroupsPSCommandPath : C:\home\site\wwwroot\Get-UserGroups\run.ps1InvocationName : Connect-MgGraphCommandOrigin : InternalScriptStackTrace : at <ScriptBlock>, C:\home\site\wwwroot\Get-UserGroups\run.ps1: line 8PipelineIterationInfo :Microsoft.Azure.WebJobs.Script.Workers.Rpc.RpcException : Result: ERROR: ManagedIdentityCredential authentication failed: Could not load file or assembly 'System.Memory.Data, Version=1.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified.See the troubleshooting guide for more information. https://aka.ms/azsdk/net/identity/managedidentitycredential/troubleshootException :Type : Azure.Identity.AuthenticationFailedExceptionTargetSite :Name : FailWrapAndThrowDeclaringType : Azure.Identity.CredentialDiagnosticScope, Azure.Identity, Version=1.10.3.0, Culture=neutral, PublicKeyToken=92742159e12e44c8MemberType : MethodModule : Azure.Identity.dllMessage : ManagedIdentityCredential authentication failed: Could not load file or assembly 'System.Memory.Data, Version=1.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified.See the troubleshooting guide for more information. https://aka.ms/azsdk/net/identity/managedidentitycredential/troubleshootInnerException :Type : System.IO.FileNotFoundExceptionMessage : Could not load file or assembly 'System.Memory.Data, Version=1.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified.FileName : System.Memory.Data, Version=1.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51TargetSite :Name : MoveNextDeclaringType : Azure.Identity.ManagedIdentitySource+<HandleResponseAsync>d__11, Azure.Identity, Version=1.10.3.0, Culture=neutral, PublicKeyToken=92742159e12e44c8MemberType : MethodModule : Azure.Identity.dllSource : Azure.IdentityHResult : -2147024894StackTrace :at Azure.Identity.ManagedIdentitySource.HandleResponseAsync(Boolean async, TokenRequestContext context, Response response, CancellationToken cancellationToken)at System.Runtime.CompilerServices.AsyncMethodBuilderCore.Start[TStateMachine](TStateMachine& stateMachine)at Azure.Identity.ManagedIdentitySource.HandleResponseAsync(Boolean async, TokenRequestContext context, Response response, CancellationToken cancellationToken)at Azure.Identity.ManagedIdentitySource.AuthenticateAsync(Boolean async, TokenRequestContext context, CancellationToken cancellationToken)at Azure.Identity.ManagedIdentityClient.AuthenticateCoreAsync(Boolean async, TokenRequestContext context, CancellationToken cancellationToken)at Azure.Identity.ManagedIdentityClient.AppTokenProviderImpl(AppTokenProviderParameters parameters)at Microsoft.Identity.Client.Internal.Requests.ClientCredentialRequest.SendTokenRequestToAppTokenProviderAsync(ILoggerAdapter logger, CancellationToken cancellationToken)at Microsoft.Identity.Client.Internal.Requests.ClientCredentialRequest.GetAccessTokenAsync(CancellationToken cancellationToken, ILoggerAdapter logger)at Microsoft.Identity.Client.Internal.Requests.ClientCredentialRequest.ExecuteAsync(CancellationToken cancellationToken)at Microsoft.Identity.Client.Internal.Requests.RequestBase.RunAsync(CancellationToken cancellationToken)at Microsoft.Identity.Client.ApiConfig.Executors.ConfidentialClientExecutor.ExecuteAsync(AcquireTokenCommonParameters commonParameters, AcquireTokenForClientParameters clientParameters, CancellationToken cancellationToken)at Azure.Identity.AbstractAcquireTokenParameterBuilderExtensions.ExecuteAsync[T](AbstractAcquireTokenParameterBuilder'1 builder, Boolean async, CancellationToken cancellationToken)at Azure.Identity.MsalConfidentialClient.AcquireTokenForClientCoreAsync(String[] scopes, String tenantId, Boolean enableCae, Boolean async, CancellationToken cancellationToken)at Azure.Identity.MsalConfidentialClient.AcquireTokenForClientAsync(String[] scopes, String tenantId, Boolean enableCae, Boolean async, CancellationToken cancellationToken)at Azure.Identity.ManagedIdentityClient.AuthenticateAsync(Boolean async, TokenRequestContext context, CancellationToken cancellationToken)at Azure.Identity.ManagedIdentityCredential.GetTokenImplAsync(Boolean async, TokenRequestContext requestContext, CancellationToken cancellationToken)Source : Azure.IdentityHResult : -2146233088StackTrace :at Azure.Identity.CredentialDiagnosticScope.FailWrapAndThrow(Exception ex, String additionalMessage, Boolean isCredentialUnavailable)at Azure.Identity.ManagedIdentityCredential.GetTokenImplAsync(Boolean async, TokenRequestContext requestContext, CancellationToken cancellationToken)at Azure.Identity.ManagedIdentityCredential.GetTokenAsync(TokenRequestContext requestContext, CancellationToken cancellationToken)at Microsoft.Graph.PowerShell.Authentication.Core.Utilities.AuthenticationHelpers.SignInAsync(IAuthContext authContext, CancellationToken cancellationToken)at Microsoft.Graph.PowerShell.Authentication.Core.Utilities.AuthenticationHelpers.AuthenticateAsync(IAuthContext authContext, CancellationToken cancellationToken)at Microsoft.Graph.PowerShell.Authentication.Cmdlets.ConnectMgGraph.ProcessRecordAsync()at Microsoft.Graph.PowerShell.Authentication.Cmdlets.ConnectMgGraph.ProcessRecordAsync()CategoryInfo : NotSpecified: (:) [Connect-MgGraph], AuthenticationFailedExceptionFullyQualifiedErrorId : Microsoft.Graph.PowerShell.Authentication.Cmdlets.ConnectMgGraphInvocationInfo :MyCommand : Connect-MgGraphScriptLineNumber : 8OffsetInLine : 1HistoryId : 1ScriptName : C:\home\site\wwwroot\Get-UserGroups\run.ps1Line : Connect-MgGraph -Identity -DebugPositionMessage : At C:\home\site\wwwroot\Get-UserGroups\run.ps1:8 char:1+ Connect-MgGraph -Identity -Debug+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~PSScriptRoot : C:\home\site\wwwroot\Get-UserGroupsPSCommandPath : C:\home\site\wwwroot\Get-UserGroups\run.ps1InvocationName : Connect-MgGraphCommandOrigin : InternalScriptStackTrace : at <ScriptBlock>, C:\home\site\wwwroot\Get-UserGroups\run.ps1: line 8PipelineIterationInfo :Exception: ManagedIdentityCredential authentication failed: Could not load file or assembly 'System.Memory.Data, Version=1.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified.See the troubleshooting guide for more information. https://aka.ms/azsdk/net/identity/managedidentitycredential/troubleshootStack: at Azure.Identity.CredentialDiagnosticScope.FailWrapAndThrow(Exception ex, String additionalMessage, Boolean isCredentialUnavailable)at Azure.Identity.ManagedIdentityCredential.GetTokenImplAsync(Boolean async, TokenRequestContext requestContext, CancellationToken cancellationToken)at Azure.Identity.ManagedIdentityCredential.GetTokenAsync(TokenRequestContext requestContext, CancellationToken cancellationToken)at Microsoft.Graph.PowerShell.Authentication.Core.Utilities.AuthenticationHelpers.SignInAsync(IAuthContext authContext, CancellationToken cancellationToken)at Microsoft.Graph.PowerShell.Authentication.Core.Utilities.AuthenticationHelpers.AuthenticateAsync(IAuthContext authContext, CancellationToken cancellationToken)at Microsoft.Graph.PowerShell.Authentication.Cmdlets.ConnectMgGraph.ProcessRecordAsync()at Microsoft.Graph.PowerShell.Authentication.Cmdlets.ConnectMgGraph.ProcessRecordAsync()

Module Version

Get-Module Microsoft.Graph* returns nothing when run within the function. Here is the output of Get-Module -ListAvailable:

2023-11-13T22:21:45.251 [Information] OUTPUT:     Directory: C:\home\data\ManagedDependencies\2311091748154823154.r
2023-11-13T22:21:45.251 [Information] OUTPUT:
2023-11-13T22:21:45.259 [Information] OUTPUT: ModuleType Version    PreRelease Name                                PSEdition ExportedCommands
2023-11-13T22:21:45.259 [Information] OUTPUT: ---------- -------    ---------- ----                                --------- ----------------
2023-11-13T22:21:45.261 [Information] OUTPUT: Script     10.4.1                Az                                  Core,Desk
2023-11-13T22:21:45.265 [Information] OUTPUT: Script     2.13.1                Az.Accounts                         Core,Desk {Disable-AzDataCollection, Disable-AzCon…
2023-11-13T22:21:45.266 [Information] OUTPUT: Script     2.0.0                 Az.Advisor                          Core,Desk {Disable-AzAdvisorRecommendation, Enable…
2023-11-13T22:21:45.267 [Information] OUTPUT: Script     5.5.1                 Az.Aks                              Core,Desk {Get-AzAksCluster, New-AzAksCluster, Rem…
2023-11-13T22:21:45.268 [Information] OUTPUT: Script     1.1.4                 Az.AnalysisServices                 Core,Desk {Resume-AzAnalysisServicesServer, Suspen…
2023-11-13T22:21:45.292 [Information] OUTPUT: Script     4.0.2                 Az.ApiManagement                    Core,Desk {Add-AzApiManagementApiToGateway, Add-Az…
2023-11-13T22:21:45.292 [Information] OUTPUT: Script     1.3.0                 Az.AppConfiguration                 Core,Desk {Get-AzAppConfigurationStore, Get-AzAppC…
2023-11-13T22:21:45.292 [Information] OUTPUT: Script     2.2.2                 Az.ApplicationInsights              Core,Desk {Get-AzApplicationInsights, Get-AzApplic…
2023-11-13T22:21:45.292 [Information] OUTPUT: Script     1.0.0                 Az.ArcResourceBridge                Core,Desk {Get-AzArcResourceBridge, Get-AzArcResou…
2023-11-13T22:21:45.292 [Information] OUTPUT: Script     2.0.0                 Az.Attestation                      Core,Desk {Get-AzAttestationPolicy, Set-AzAttestat…
2023-11-13T22:21:45.292 [Information] OUTPUT: Script     1.0.0                 Az.Automanage                       Core,Desk {Get-AzAutomanageBestPractice, Get-AzAut…
2023-11-13T22:21:45.292 [Information] OUTPUT: Script     1.9.1                 Az.Automation                       Core,Desk {Set-AzAutomationPython3Package, New-AzA…
2023-11-13T22:21:45.292 [Information] OUTPUT: Script     3.5.0                 Az.Batch                            Core,Desk {Remove-AzBatchAccount, Get-AzBatchAccou…
2023-11-13T22:21:45.292 [Information] OUTPUT: Script     2.0.3                 Az.Billing                          Core,Desk {Get-AzBillingInvoice, Get-AzBillingPeri…
2023-11-13T22:21:45.292 [Information] OUTPUT: Script     3.1.1                 Az.Cdn                              Core,Desk {Clear-AzCdnEndpointContent, Clear-AzFro…
2023-11-13T22:21:45.292 [Information] OUTPUT: Script     1.2.0                 Az.CloudService                     Core,Desk {Get-AzCloudService, Get-AzCloudServiceI…
2023-11-13T22:21:45.293 [Information] OUTPUT: Script     1.14.0                Az.CognitiveServices                Core,Desk {Get-AzCognitiveServicesAccount, Get-AzC…
2023-11-13T22:21:45.293 [Information] OUTPUT: Script     6.3.0                 Az.Compute                          Core,Desk {Remove-AzAvailabilitySet, Get-AzAvailab…
2023-11-13T22:21:45.293 [Information] OUTPUT: Script     1.0.0                 Az.ConfidentialLedger               Core,Desk {Get-AzConfidentialLedger, New-AzConfide…
2023-11-13T22:21:45.293 [Information] OUTPUT: Script     3.2.2                 Az.ContainerInstance                Core,Desk {Add-AzContainerInstanceOutput, Get-AzCo…
2023-11-13T22:21:45.293 [Information] OUTPUT: Script     4.1.1                 Az.ContainerRegistry                Core,Desk {Connect-AzContainerRegistry, Get-AzCont…
2023-11-13T22:21:45.293 [Information] OUTPUT: Script     1.12.0                Az.CosmosDB                         Core,Desk {Get-AzCosmosDBSqlContainer, Get-AzCosmo…
2023-11-13T22:21:45.293 [Information] OUTPUT: Script     1.1.0                 Az.DataBoxEdge                      Core,Desk {Get-AzDataBoxEdgeJob, Get-AzDataBoxEdge…
2023-11-13T22:21:45.293 [Information] OUTPUT: Script     1.7.0                 Az.Databricks                       Core,Desk {Get-AzDatabricksAccessConnector, Get-Az…
2023-11-13T22:21:45.293 [Information] OUTPUT: Script     1.17.0                Az.DataFactory                      Core,Desk {Set-AzDataFactoryV2, Update-AzDataFacto…
2023-11-13T22:21:45.293 [Information] OUTPUT: Script     1.0.3                 Az.DataLakeAnalytics                Core,Desk {Get-AzDataLakeAnalyticsDataSource, New-…
2023-11-13T22:21:45.293 [Information] OUTPUT: Script     1.3.0                 Az.DataLakeStore                    Core,Desk {Get-AzDataLakeStoreTrustedIdProvider, R…
2023-11-13T22:21:45.293 [Information] OUTPUT: Script     2.1.0                 Az.DataProtection                   Core,Desk {Backup-AzDataProtectionBackupInstanceAd…
2023-11-13T22:21:45.293 [Information] OUTPUT: Script     1.0.1                 Az.DataShare                        Core,Desk {New-AzDataShareAccount, Get-AzDataShare…
2023-11-13T22:21:45.293 [Information] OUTPUT: Script     1.1.0                 Az.DeploymentManager                Core,Desk {Get-AzDeploymentManagerArtifactSource, …
2023-11-13T22:21:45.332 [Information] OUTPUT: Script     4.0.0                 Az.DesktopVirtualization            Core,Desk {Disconnect-AzWvdUserSession, Expand-AzW…
2023-11-13T22:21:45.332 [Information] OUTPUT: Script     1.0.2                 Az.DevTestLabs                      Core,Desk {Get-AzDtlAllowedVMSizesPolicy, Get-AzDt…
2023-11-13T22:21:45.332 [Information] OUTPUT: Script     1.1.3                 Az.Dns                              Core,Desk {Get-AzDnsRecordSet, New-AzDnsRecordConf…
2023-11-13T22:21:45.332 [Information] OUTPUT: Script     1.6.0                 Az.EventGrid                        Core,Desk {New-AzEventGridTopic, Get-AzEventGridTo…
2023-11-13T22:21:45.332 [Information] OUTPUT: Script     4.1.0                 Az.EventHub                         Core,Desk {New-AzEventHubAuthorizationRuleSASToken…
2023-11-13T22:21:45.332 [Information] OUTPUT: Script     1.10.0                Az.FrontDoor                        Core,Desk {New-AzFrontDoor, Get-AzFrontDoor, Set-A…
2023-11-13T22:21:45.333 [Information] OUTPUT: Script     4.0.6                 Az.Functions                        Core,Desk {Get-AzFunctionApp, Get-AzFunctionAppAva…
2023-11-13T22:21:45.333 [Information] OUTPUT: Script     6.0.1                 Az.HDInsight                        Core,Desk {Get-AzHDInsightJob, New-AzHDInsightSqoo…
2023-11-13T22:21:45.333 [Information] OUTPUT: Script     2.0.0                 Az.HealthcareApis                   Core,Desk {Get-AzHealthcareApisService, Get-AzHeal…
2023-11-13T22:21:45.333 [Information] OUTPUT: Script     2.7.5                 Az.IotHub                           Core,Desk {Add-AzIotHubKey, Get-AzIotHubEventHubCo…
2023-11-13T22:21:45.333 [Information] OUTPUT: Script     4.12.0                Az.KeyVault                         Core,Desk {Add-AzKeyVaultCertificate, Update-AzKey…
2023-11-13T22:21:45.333 [Information] OUTPUT: Script     2.2.0                 Az.Kusto                            Core,Desk {Add-AzKustoClusterLanguageExtension, Ad…
2023-11-13T22:21:45.333 [Information] OUTPUT: Script     1.0.0                 Az.LoadTesting                      Core,Desk {Get-AzLoad, New-AzLoad, Remove-AzLoad, …
2023-11-13T22:21:45.333 [Information] OUTPUT: Script     1.5.0                 Az.LogicApp                         Core,Desk {Get-AzIntegrationAccountAgreement, Get-…
2023-11-13T22:21:45.333 [Information] OUTPUT: Script     1.1.3                 Az.MachineLearning                  Core,Desk {Move-AzMlCommitmentAssociation, Get-AzM…
2023-11-13T22:21:45.333 [Information] OUTPUT: Script     1.0.0                 Az.MachineLearningServices          Core,Desk {Get-AzMLServiceQuota, Get-AzMLServiceUs…
2023-11-13T22:21:45.333 [Information] OUTPUT: Script     1.3.1                 Az.Maintenance                      Core,Desk {Get-AzApplyUpdate, Get-AzConfigurationA…
2023-11-13T22:21:45.333 [Information] OUTPUT: Script     1.1.1                 Az.ManagedServiceIdentity           Core,Desk {Get-AzFederatedIdentityCredentials, Get…
2023-11-13T22:21:45.333 [Information] OUTPUT: Script     3.0.0                 Az.ManagedServices                  Core,Desk {Get-AzManagedServicesAssignment, Get-Az…
2023-11-13T22:21:45.333 [Information] OUTPUT: Script     2.0.0                 Az.MarketplaceOrdering              Core,Desk {Get-AzMarketplaceTerms, Invoke-AzMarket…
2023-11-13T22:21:45.333 [Information] OUTPUT: Script     1.1.2                 Az.Media                            Core,Desk {Sync-AzMediaServiceStorageKey, Set-AzMe…
2023-11-13T22:21:45.333 [Information] OUTPUT: Script     2.2.0                 Az.Migrate                          Core,Desk {Get-AzMigrateDiscoveredServer, Get-AzMi…
2023-11-13T22:21:45.334 [Information] OUTPUT: Script     4.6.0                 Az.Monitor                          Core,Desk {Get-AzMetricDefinition, Get-AzMetric, R…
2023-11-13T22:21:45.334 [Information] OUTPUT: Script     1.1.1                 Az.MySql                            Core,Desk {Get-AzMySqlConfiguration, Get-AzMySqlCo…
2023-11-13T22:21:45.334 [Information] OUTPUT: Script     6.2.0                 Az.Network                          Core,Desk {Add-AzApplicationGatewayAuthenticationC…
2023-11-13T22:21:45.334 [Information] OUTPUT: Script     1.1.2                 Az.NotificationHubs                 Core,Desk {Get-AzNotificationHub, Get-AzNotificati…
2023-11-13T22:21:45.334 [Information] OUTPUT: Script     3.2.0                 Az.OperationalInsights              Core,Desk {New-AzOperationalInsightsAzureActivityL…
2023-11-13T22:21:45.334 [Information] OUTPUT: Script     1.6.3                 Az.PolicyInsights                   Core,Desk {Get-AzPolicyEvent, Get-AzPolicyState, G…
2023-11-13T22:21:45.334 [Information] OUTPUT: Script     1.1.0                 Az.PostgreSql                       Core,Desk {Get-AzPostgreSqlConfiguration, Get-AzPo…
2023-11-13T22:21:45.334 [Information] OUTPUT: Script     1.2.1                 Az.PowerBIEmbedded                  Core,Desk {Remove-AzPowerBIWorkspaceCollection, Ge…
2023-11-13T22:21:45.334 [Information] OUTPUT: Script     1.0.4                 Az.PrivateDns                       Core,Desk {Get-AzPrivateDnsZone, Remove-AzPrivateD…
2023-11-13T22:21:45.334 [Information] OUTPUT: Script     6.6.0                 Az.RecoveryServices                 Core,Desk {Get-AzRecoveryServicesBackupProperty, G…
2023-11-13T22:21:45.334 [Information] OUTPUT: Script     1.8.0                 Az.RedisCache                       Core,Desk {Remove-AzRedisCachePatchSchedule, New-A…
2023-11-13T22:21:45.334 [Information] OUTPUT: Script     1.2.0                 Az.RedisEnterpriseCache             Core,Desk {Export-AzRedisEnterpriseCache, Get-AzRe…
2023-11-13T22:21:45.334 [Information] OUTPUT: Script     2.0.0                 Az.Relay                            Core,Desk {Get-AzRelayAuthorizationRule, Get-AzRel…
2023-11-13T22:21:45.334 [Information] OUTPUT: Script     1.2.0                 Az.ResourceMover                    Core,Desk {Add-AzResourceMoverMoveResource, Get-Az…
2023-11-13T22:21:45.334 [Information] OUTPUT: Script     6.11.1                Az.Resources                        Core,Desk {Get-AzProviderOperation, Remove-AzRoleA…
2023-11-13T22:21:45.335 [Information] OUTPUT: Script     1.4.0                 Az.Security                         Core,Desk {Get-AzSecuritySolution, Get-AzSecurityS…
2023-11-13T22:21:45.335 [Information] OUTPUT: Script     3.1.0                 Az.SecurityInsights                 Core,Desk {Get-AzSentinelAlertRule, Get-AzSentinel…
2023-11-13T22:21:45.335 [Information] OUTPUT: Script     3.0.0                 Az.ServiceBus                       Core,Desk {New-AzServiceBusAuthorizationRuleSASTok…
2023-11-13T22:21:45.335 [Information] OUTPUT: Script     3.2.0                 Az.ServiceFabric                    Core,Desk {Add-AzServiceFabricClientCertificate, A…
2023-11-13T22:21:45.335 [Information] OUTPUT: Script     2.0.0                 Az.SignalR                          Core,Desk {New-AzSignalR, Get-AzSignalR, Get-AzSig…
2023-11-13T22:21:45.335 [Information] OUTPUT: Script     4.10.0                Az.Sql                              Core,Desk {Invoke-AzSqlServerExternalGovernanceSta…
2023-11-13T22:21:45.335 [Information] OUTPUT: Script     2.1.0                 Az.SqlVirtualMachine                Core,Desk {Get-AzAvailabilityGroupListener, Get-Az…
2023-11-13T22:21:45.335 [Information] OUTPUT: Script     2.2.0                 Az.StackHCI                         Core,Desk {Add-AzStackHCIVMAttestation, Disable-Az…
2023-11-13T22:21:45.354 [Information] OUTPUT: Script     5.10.1                Az.Storage                          Core,Desk {Get-AzStorageAccount, Get-AzStorageAcco…
2023-11-13T22:21:45.355 [Information] OUTPUT: Script     1.0.1                 Az.StorageMover                     Core,Desk {Get-AzStorageMover, Get-AzStorageMoverA…
2023-11-13T22:21:45.355 [Information] OUTPUT: Script     2.0.0                 Az.StorageSync                      Core,Desk {Invoke-AzStorageSyncCompatibilityCheck,…
2023-11-13T22:21:45.355 [Information] OUTPUT: Script     2.0.0                 Az.StreamAnalytics                  Core,Desk {Get-AzStreamAnalyticsCluster, Get-AzStr…
2023-11-13T22:21:45.355 [Information] OUTPUT: Script     1.0.0                 Az.Support                          Core,Desk {Get-AzSupportService, Get-AzSupportProb…
2023-11-13T22:21:45.355 [Information] OUTPUT: Script     3.0.3                 Az.Synapse                          Core,Desk {Get-AzSynapseSparkJob, Stop-AzSynapseSp…
2023-11-13T22:21:45.355 [Information] OUTPUT: Script     1.2.1                 Az.TrafficManager                   Core,Desk {Add-AzTrafficManagerCustomHeaderToEndpo…
2023-11-13T22:21:45.355 [Information] OUTPUT: Script     3.1.1                 Az.Websites                         Core,Desk {Get-AzAppServicePlan, Set-AzAppServiceP…
2023-11-13T22:21:45.355 [Information] OUTPUT: Script     2.9.0                 Microsoft.Graph.Authentication      Core,Desk {Connect-MgGraph, Disconnect-MgGraph, Ge…
2023-11-13T22:21:45.355 [Information] OUTPUT: Script     2.9.0                 Microsoft.Graph.Beta.Reports        Core,Desk {Confirm-MgBetaAuditLogSignInCompromised…
2023-11-13T22:21:45.355 [Information] OUTPUT: Script     2.9.0                 Microsoft.Graph.DeviceManagement    Core,Desk {Get-MgAdminEdge, Get-MgAdminEdgeInterne…
2023-11-13T22:21:45.355 [Information] OUTPUT: Script     2.9.0                 Microsoft.Graph.DeviceManagement.A… Core,Desk {Clear-MgDeviceManagementManagedDevice, …
2023-11-13T22:21:45.355 [Information] OUTPUT: Script     2.9.0                 Microsoft.Graph.Groups              Core,Desk {Add-MgGroupDriveListContentTypeCopy, Ad…
2023-11-13T22:21:45.355 [Information] OUTPUT: Script     2.9.0                 Microsoft.Graph.Identity.Directory… Core,Desk {Confirm-MgContactMemberGroup, Confirm-M…
2023-11-13T22:21:45.355 [Information] OUTPUT: Script     2.9.0                 Microsoft.Graph.Users               Core,Desk {Get-MgUser, Get-MgUserCount, Get-MgUser…
2023-11-13T22:21:45.355 [Information] OUTPUT:
2023-11-13T22:21:45.355 [Information] OUTPUT:     Directory: C:\Program Files (x86)\SiteExtensions\Functions\4.27.5\workers\powershell\7.2\Modules
2023-11-13T22:21:45.355 [Information] OUTPUT:
2023-11-13T22:21:45.356 [Information] OUTPUT: ModuleType Version    PreRelease Name                                PSEdition ExportedCommands
2023-11-13T22:21:45.356 [Information] OUTPUT: ---------- -------    ---------- ----                                --------- ----------------
2023-11-13T22:21:45.356 [Information] OUTPUT: Manifest   0.3.0                 Microsoft.Azure.Functions.PowerShe… Core      {Get-OutputBinding, Get-DurableTaskResul…
2023-11-13T22:21:45.356 [Information] OUTPUT: Manifest   1.2.5                 Microsoft.PowerShell.Archive        Desk      {Compress-Archive, Expand-Archive}
2023-11-13T22:21:45.356 [Information] OUTPUT: Script     1.4.8.1               PackageManagement                   Desk      {Find-Package, Get-Package, Get-PackageP…
2023-11-13T22:21:45.356 [Information] OUTPUT: Script     1.4.7                 PackageManagement                   Desk      {Find-Package, Get-Package, Get-PackageP…
2023-11-13T22:21:45.356 [Information] OUTPUT: Script     2.2.5                 PowerShellGet                       Desk      {Find-Command, Find-DSCResource, Find-Mo…
2023-11-13T22:21:45.356 [Information] OUTPUT: Binary     2.0.3                 ThreadJob                           Desk      Start-ThreadJob
@timayabi2020
Copy link
Contributor

@anewhouse closing this because it's a duplicate. See my comments here #2424

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants