HodorNV / ALOps

ALOps
58 stars 24 forks source link

Installation of AL-Testtools fails on MS app? #572

Closed kasperdj closed 1 year ago

kasperdj commented 1 year ago

Describe the bug I am getting the following error on a MS Test Tool related app when I try using AL-TestTool on BC21 sandbox. I know it's an MS app but wanted to hear if ALOps knows about a workaround for this issue currently breaking my pipelines?

AL-TestTool installation failed: Sorry, we can't proceed with the operation for app 'System Application Test Library' by 'Microsoft' for tenant 'nav-systemapplication' because the app doesn’t meet our Universal Code requirement

the used yaml please provide the yaml that you used. It helps you put the yaml like this:

name: $(Build.BuildId)

variables:
- group: AzureKeyVault

# Variables with a default value which can be overruled by a DevOps variable.
- name: 'InstallPrevApp'
  value: '1'
- name: 'CodeAnalyzers'
  value: 'CodeCop,UICop,AppSourceCop'
- name: 'FailAppOnWarnings'
  value: "true"
- name: 'PublishDependencies'
  value: '0'
- name: 'SignApp'
  value: '1'
- name: AppFolder
  value: 'app'
- name: TestAppFolder
  value: 'test'
- name: 'TestSuite'
  value: 'EVXJ'
- name: 'RunTests'
  value: '1'
- name: 'PreserveVersionNo'
  value: '0'
- name: 'PrintAllVariables'
  value: '0'
- name: 'CompilerSettingsName'
  value: 'Standard'
- name: 'TestCompilerSettingsName'
  value: 'Standard'

# Variables set from DevOps Pipeline without a default value.
- name: 'EnvironmentType'
- name: 'Version'
- name: 'Localization'
- name: 'ArtifactVersion'
- name: 'License'

# Folder and Path Variables.
- name: 'AppJsonPath'
- name: 'DependenciesFolder'
- name: 'PrevAppVersionFolder'
- name: 'XliffGenFolder'
- name: 'TestAppJsonPath'
- name: 'EVCompilerSettingsPath'

# Misc Variables.
- name: 'CompilerArgumentForVersionNo'

pool:
  name: EV_OnPremise

resources:
  repositories:
    - repository: 'yamltemplates'
      type: 'git'
      name: 'Templates/Templates'
      ref:  'refs/heads/master'

steps:
- checkout: self
  clean: "true"

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
# EV: Set Yaml Variables From DevOps Variables
- template: 'Variables/SetYamlVariablesFromDevOpsVariables.yml@yamltemplates'
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
# EV: Update Yaml Variables From EVCompilerSettings.json
- template: 'Variables/UpdateVariables.yml@yamltemplates'
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
# EV: Print Yaml Variable Values
- template: 'Variables/PrintYamlVariableValues.yml@yamltemplates'
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
# EV: Hotfix for Breaking Schema Changes
- template: 'Hotfix/HotfixforBreakingSchemaChanges.yml@yamltemplates'
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
# EV: Get Dependencies
- template: 'OnPrem-Builds/InstallDependencies.yml@yamltemplates'
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
# Build Container
- template: 'Container/BuildContainer.yml@yamltemplates'
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsLicenseImport@1
  displayName: 'EV: Import DevOps Defined License'
  condition: and(succeeded(), ne(variables['BC_License'], ''))
  inputs:
    usedocker: true
    license_path: $(BC_License)

- task: ALOpsLicenseImport@1
  displayName: 'EV: Import Auto Selected License'
  condition: and(succeeded(), eq(variables['BC_License'], ''), ne(variables['License'], ''))
  inputs:
    usedocker: true
    license_path: $(License)
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
- task: ALOpsDockerExec@1
  displayName: 'EV: Show Businees Central License Information'
  inputs:
    inline_script: |
      Get-NavServerInstance | Export-NavServerLicenseInformation
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsAppPublish@1
  displayName: 'ALOps Install AL TestTool'
  condition: and(succeeded(), eq(variables['RunTests'], '1'))
  inputs:
    usedocker: true
    installaltesttool: true
    skip_verification: true
    install_al_app_names: |
     Tests-TestLibraries
     System Application Test
     System Application Test Library
     Any
     Library Assert
     Test Runner
     Permissions Mock
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsAppPublish@1
  displayName: 'EV: Install Previous App Version'
  condition: and(succeeded(), eq(variables['InstallPrevApp'], '1'))
  inputs:
    usedocker: true
    nav_artifact_app_filter: '*.app'
    batch_publish_folder: $(PrevAppVersionFolder)
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsAppPublish@1
  displayName: 'EV: Install ISV and dependencies apps'
  inputs:
    usedocker: true
    nav_artifact_app_filter: '*.app'
    batch_publish_folder: $(DependenciesFolder)
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsAppCompiler@1
  displayName: 'ALOps Compile App'
  inputs:
    usedocker: true
    targetproject: $(AppJsonPath)
    nav_app_version: $(CompilerArgumentForVersionNo)
    al_analyzer: $(CodeAnalyzers)
    app_file_suffix: '_APP'
    failed_on_warnings: $(FailAppOnWarnings)    
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsAppPublish@1
  displayName: 'ALOps Publish AL-App'
  inputs:
    usedocker: true
    nav_artifact_app_filter: '*_APP.app'   
    skip_verification: true 
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
# EV: Generate Xliff files
- template: 'Xliff/Xliff.yml@yamltemplates'
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsAppCompiler@1
  displayName: 'ALOps Compile Test App'
  condition: and(succeeded(), eq(variables['RunTests'], '1'))
  inputs:
    usedocker: true
    targetproject: $(TestAppJsonPath)
    nav_app_version: '?.?.?.?'
    app_file_suffix: '_TEST'
    failed_on_warnings: true    
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsAppPublish@1
  displayName: 'ALOps Publish AL-TEST App'
  condition: and(succeeded(), eq(variables['RunTests'], '1'))
  inputs:
    usedocker: true
    nav_artifact_app_filter: '*_TEST.app'
    skip_verification: true 
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsAppTest@1
  displayName: 'EV: Run Custom Tests'
  condition: and(succeeded(), eq(variables['RunTests'], '1'))
  inputs:
    usedocker: true
    import_action: "Skip"
    import_testtoolkit: false
    testpage: '130455'
    testsuite: $(TestSuite) 
    failed_test_action: 'Error'
  continueOnError: false   
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: PublishTestResults@2
  displayName: 'ALOps Publish Test Results **/TestResults.xml'
  condition: eq(variables['RunTests'], '1')
  inputs:
    testResultsFormat: XUnit
    testResultsFiles: '**/TestResults.xml'
    testRunTitle: 'BC Test Results: $(Build.BuildId)'
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsAppCompiler@1
  displayName: 'ALOps Re-Compile App with xliff'
  inputs:
    usedocker: true
    targetproject: $(AppJsonPath)
    nav_app_version: $(CompilerArgumentForVersionNo)
    app_file_suffix: '_APP'
    failed_on_warnings: $(FailAppOnWarnings)    
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsAppSign@1
  displayName: 'ALOps Sign App'
  condition: and(succeeded(), eq(variables['SignApp'], '1'))
  inputs:
    usedocker: true
    nav_artifact_app_filter: '*_APP.app'
    pfx_path: $(CodeSignPfx)
    timestamp_uri: 'http://timestamp.comodoca.com/authenticode'
    pfx_password: $(CodeSignPfxPswd)
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsAppSign@1
  displayName: 'ALOps Sign Test App'
  condition: and(succeeded(), eq(variables['RunTests'], '1'), eq(variables['SignApp'], '1'))
  inputs:
    usedocker: true
    nav_artifact_app_filter: '*_TEST.app'
    pfx_path: $(CodeSignPfx)
    timestamp_uri: 'http://timestamp.comodoca.com/authenticode'
    pfx_password: $(CodeSignPfxPswd)
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: PublishBuildArtifacts@1
  displayName: 'Publish App Dependencies'
  condition: and(succeeded(), eq(variables['PublishDependencies'], '1'))
  inputs:
    PathtoPublish: $(DependenciesFolder)
    ArtifactName: 'Dependencies'
    publishLocation: 'Container'
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
- task: ALOpsDockerRemove@1
  displayName: 'ALOps Remove Docker Container'
  enabled: "true"
  condition: always()
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
# ALOps: Clean up Build Server 
- template: 'CleanUp/CleanUpBuildServer.yml@yamltemplates'
#<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

the output Also the complete output is necessary for us to see what is going on. Also use backtics:

2022-10-04T04:45:04.8702494Z ##[section]Starting: ALOps Install AL TestTool
2022-10-04T04:45:04.8837606Z ==============================================================================
2022-10-04T04:45:04.8838018Z Task         : ALOps App Publish
2022-10-04T04:45:04.8838334Z Description  : Publish AL Extension to Business Central
2022-10-04T04:45:04.8838634Z Version      : 1.452.3242
2022-10-04T04:45:04.8838897Z Author       : Hodor
2022-10-04T04:45:04.8839214Z Help         : Publish Business Central extension to service tier.
2022-10-04T04:45:04.8839606Z ==============================================================================
2022-10-04T04:45:07.1226619Z *** Validate configuration
2022-10-04T04:45:07.5547948Z *** Task Inputs:
2022-10-04T04:45:07.5549489Z 
2022-10-04T04:45:07.5550360Z name                                                                                                              value
2022-10-04T04:45:07.5551144Z ----                                                                                                              -----
2022-10-04T04:45:07.5552034Z usedocker                                                                                                          True
2022-10-04T04:45:07.5552986Z fixed_tag                                                                                                              
2022-10-04T04:45:07.5553922Z installpublishedapps                                                                                               True
2022-10-04T04:45:07.5554731Z installaltesttool                                                                                                  True
2022-10-04T04:45:07.5555605Z install_al_app_names                                                                             Tests-TestLibraries...
2022-10-04T04:45:07.5556449Z strictappnames                                                                                                    False
2022-10-04T04:45:07.5557435Z nav_serverinstance                                                                                                BC140
2022-10-04T04:45:07.5558199Z artifact_path                                                                                                          
2022-10-04T04:45:07.5558959Z nav_artifact_app_filter                                                                                           *.app
2022-10-04T04:45:07.5559725Z skip_verification                                                                                                  True
2022-10-04T04:45:07.5560505Z forceinstall                                                                                                      False
2022-10-04T04:45:07.5561271Z forcesync                                                                                                         False
2022-10-04T04:45:07.5562053Z publish_scope                                                                                                    Global
2022-10-04T04:45:07.5562841Z tenant                                                                                                          default
2022-10-04T04:45:07.5563809Z batch_publish_folder                                                                                                   
2022-10-04T04:45:07.5564947Z publisherazureactivedirectorytenantid                                                                                  
2022-10-04T04:45:07.5565489Z 
2022-10-04T04:45:07.5565924Z 
2022-10-04T04:45:07.5566280Z 
2022-10-04T04:45:07.5808448Z *** For documentation, please visit   : https://www.alops.be/documentation
2022-10-04T04:45:07.5809961Z 
2022-10-04T04:45:08.2919778Z *** ALOps License:
2022-10-04T04:45:08.2944238Z   * Licensed To: Elbek & Vejrup A/S (Organisation License)
2022-10-04T04:45:08.2949802Z 
2022-10-04T04:45:08.3078464Z *** Importing required PS-Functions
2022-10-04T04:45:08.7848220Z *** Initiate Docker Session
2022-10-04T04:45:09.0322361Z *** Set Docker Container ErrorActionPreference = Stop
2022-10-04T04:45:09.3486954Z *** Install AL TestTool: True
2022-10-04T04:45:09.3496793Z *** Start AL-TestTool installation
2022-10-04T04:45:10.2431056Z *** Import NAV/BC Management DLL's
2022-10-04T04:45:10.2555184Z *** Loading assemblies for ServiceTier [BC].
2022-10-04T04:45:10.5178052Z *** Loading assemblies from: [C:\program files\microsoft dynamics nav\210\service]
2022-10-04T04:45:10.5299202Z *** Selected module: [C:\program files\microsoft dynamics nav\210\service\Microsoft.Dynamics.Nav.Apps.Management.dll]
2022-10-04T04:45:10.5332437Z *** Loading module: [C:\program files\microsoft dynamics nav\210\service\Microsoft.Dynamics.Nav.Apps.Management.dll]
2022-10-04T04:45:10.5629773Z *** Selected module: [C:\program files\microsoft dynamics nav\210\service\Microsoft.Dynamics.Nav.Management.dll]
2022-10-04T04:45:10.5639827Z *** Loading module: [C:\program files\microsoft dynamics nav\210\service\Microsoft.Dynamics.Nav.Management.dll]
2022-10-04T04:45:10.5957116Z *** BC NCL Management DLL: C:\program files\microsoft dynamics nav\210\service\Microsoft.Dynamics.Nav.Ncl.dll
2022-10-04T04:45:10.9367795Z *** BC Types DLL: C:\program files\microsoft dynamics nav\210\service\Microsoft.Dynamics.Nav.Types.dll
2022-10-04T04:45:11.2434662Z *** Check MockAssemblies.
2022-10-04T04:45:11.2534820Z *** Application requested for installation:
2022-10-04T04:45:11.2576756Z   * Any
2022-10-04T04:45:11.2589698Z   * Library Assert
2022-10-04T04:45:11.2599174Z   * Library Variable Storage
2022-10-04T04:45:11.2609119Z   * Permissions Mock
2022-10-04T04:45:11.2620611Z   * System Application Test
2022-10-04T04:45:11.2633072Z   * System Application Test Library
2022-10-04T04:45:11.2640463Z   * Test Runner
2022-10-04T04:45:11.2651447Z   * Tests-TestLibraries
2022-10-04T04:45:11.2654868Z 
2022-10-04T04:45:11.2734150Z *** Get Available Applications from [C:\Applications*\ C:\Extension*\].
2022-10-04T04:45:11.2878803Z *** Get [*.app] files recursive from [C:\Applications*\ C:\Extension*\]
2022-10-04T04:45:11.6631143Z *** Found [262] files.
2022-10-04T04:45:11.6645733Z *** Extract App detail from [C:\Applications\APIReportsFinance\Source\Microsoft_API Reports - Finance.app]
2022-10-04T04:45:11.7814710Z *** Extract App detail from [C:\Applications\APIV1\Source\Microsoft__Exclude_APIV1_.app]
2022-10-04T04:45:11.7946556Z *** Extract App detail from [C:\Applications\APIV1\Test\Microsoft__Exclude_APIV1_ Tests.app]
2022-10-04T04:45:11.8009985Z *** Extract App detail from [C:\Applications\APIV2\Source\Microsoft__Exclude_APIV2_.app]
2022-10-04T04:45:11.8073428Z *** Extract App detail from [C:\Applications\APIV2\Test\Microsoft__Exclude_APIV2_ Tests.app]
2022-10-04T04:45:11.8117503Z *** Extract App detail from [C:\Applications\Application\Source\Microsoft_Application.app]
2022-10-04T04:45:11.8146430Z *** Extract App detail from [C:\Applications\BankDeposits\Source\Microsoft__Exclude_Bank Deposits.app]
2022-10-04T04:45:11.8216478Z *** Extract App detail from [C:\Applications\BankDeposits\Test\Microsoft__Exclude_Bank Deposits Tests.app]
2022-10-04T04:45:11.8245008Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Base Application.app]
2022-10-04T04:45:11.9896320Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Czech language (Czechia).app]
2022-10-04T04:45:11.9931844Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Danish language (Denmark).app]
2022-10-04T04:45:11.9964655Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Dutch language (Belgium).app]
2022-10-04T04:45:11.9998387Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Dutch language (Netherlands).app]
2022-10-04T04:45:12.0036734Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_English language (Australia).app]
2022-10-04T04:45:12.0071121Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_English language (Canada).app]
2022-10-04T04:45:12.0108025Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_English language (New Zealand).app]
2022-10-04T04:45:12.0181054Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_English language (United Kingdom).app]
2022-10-04T04:45:12.0186920Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_English language (United States).app]
2022-10-04T04:45:12.0227438Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Finnish language (Finland).app]
2022-10-04T04:45:12.0278612Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_French language (Belgium).app]
2022-10-04T04:45:12.0331743Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_French language (Canada).app]
2022-10-04T04:45:12.0371594Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_French language (France).app]
2022-10-04T04:45:12.0412667Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_French language (Switzerland).app]
2022-10-04T04:45:12.0443212Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_German language (Austria).app]
2022-10-04T04:45:12.0475131Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_German language (Germany).app]
2022-10-04T04:45:12.0509675Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_German language (Switzerland).app]
2022-10-04T04:45:12.0580149Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Icelandic language (Iceland).app]
2022-10-04T04:45:12.0616539Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Italian language (Italy).app]
2022-10-04T04:45:12.0630289Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Italian language (Switzerland).app]
2022-10-04T04:45:12.0665559Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Norwegian language (Norway).app]
2022-10-04T04:45:12.0711783Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Russian language (Russia).app]
2022-10-04T04:45:12.0750871Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Spanish language (Mexico).app]
2022-10-04T04:45:12.0801241Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Spanish language (Spain).app]
2022-10-04T04:45:12.0854466Z *** Extract App detail from [C:\Applications\BaseApp\Source\Microsoft_Swedish language (Sweden).app]
2022-10-04T04:45:12.0864224Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Library-NoTransactions.app]
2022-10-04T04:45:12.0888215Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Bank.app]
2022-10-04T04:45:12.0926081Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Cash Flow.app]
2022-10-04T04:45:12.0960426Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Cost Accounting.app]
2022-10-04T04:45:12.0991948Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-CRM integration.app]
2022-10-04T04:45:12.1033289Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Data Exchange.app]
2022-10-04T04:45:12.1066642Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Dimension.app]
2022-10-04T04:45:12.1107215Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-ERM.app]
2022-10-04T04:45:12.1217480Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Fixed Asset.app]
2022-10-04T04:45:12.1256545Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-General Journal.app]
2022-10-04T04:45:12.1301704Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Graph.app]
2022-10-04T04:45:12.1336874Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Integration.app]
2022-10-04T04:45:12.1382920Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Invoicing.app]
2022-10-04T04:45:12.1420438Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Job.app]
2022-10-04T04:45:12.1469458Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Local.app]
2022-10-04T04:45:12.1497061Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Marketing.app]
2022-10-04T04:45:12.1537914Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Misc.app]
2022-10-04T04:45:12.1606529Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Monitor Sensitive Fields.app]
2022-10-04T04:45:12.1640913Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Permissions.app]
2022-10-04T04:45:12.1668589Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Physical Inventory.app]
2022-10-04T04:45:12.1706271Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Prepayment.app]
2022-10-04T04:45:12.1737755Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Rapid Start.app]
2022-10-04T04:45:12.1772907Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Report.app]
2022-10-04T04:45:12.1805526Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Resource.app]
2022-10-04T04:45:12.1841892Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Reverse.app]
2022-10-04T04:45:12.1873057Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-SCM.app]
2022-10-04T04:45:12.1948951Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-SINGLESERVER.app]
2022-10-04T04:45:12.1991085Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-SMB.app]
2022-10-04T04:45:12.2032812Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-TestLibraries.app]
2022-10-04T04:45:12.2113467Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Upgrade.app]
2022-10-04T04:45:12.2152805Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-User.app]
2022-10-04T04:45:12.2184186Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-VAT.app]
2022-10-04T04:45:12.2223907Z *** Extract App detail from [C:\Applications\BaseApp\Test\Microsoft_Tests-Workflow.app]
2022-10-04T04:45:12.2272841Z *** Extract App detail from [C:\Applications\ClientAddIns\Source\Microsoft__Exclude_ClientAddIns_.app]
2022-10-04T04:45:12.2303473Z *** Extract App detail from [C:\Applications\CompanyHub\Source\Microsoft_Company Hub.app]
2022-10-04T04:45:12.2361568Z *** Extract App detail from [C:\Applications\ContosoCoffeeDemoDataset\Source\Microsoft_Contoso Coffee Demo Dataset.app]
2022-10-04T04:45:12.2409944Z *** Extract App detail from [C:\Applications\DataArchive\app\Microsoft_Data Archive.app]
2022-10-04T04:45:12.2445488Z *** Extract App detail from [C:\Applications\DataArchive\test\Microsoft_Data Archive Tests.app]
2022-10-04T04:45:12.2476497Z *** Extract App detail from [C:\Applications\datacorrectionfa\source\Microsoft_Troubleshoot FA Ledger Entries.app]
2022-10-04T04:45:12.2521747Z *** Extract App detail from [C:\Applications\DataSearch\app\Microsoft_Data Search.app]
2022-10-04T04:45:12.2564319Z *** Extract App detail from [C:\Applications\DataSearch\test\Microsoft_Data Search Tests.app]
2022-10-04T04:45:12.2603078Z *** Extract App detail from [C:\Applications\Email - Current User Connector\Source\Microsoft_Email - Current User Connector.app]
2022-10-04T04:45:12.2638721Z *** Extract App detail from [C:\Applications\Email - Current User Connector\Test\Microsoft_Email - Current User Connector Tests.app]
2022-10-04T04:45:12.2671332Z *** Extract App detail from [C:\Applications\Email - Microsoft 365 Connector\Source\Microsoft_Email - Microsoft 365 Connector.app]
2022-10-04T04:45:12.2715150Z *** Extract App detail from [C:\Applications\Email - Microsoft 365 Connector\Test\Microsoft_Email - Microsoft 365 Connector Tests.app]
2022-10-04T04:45:12.2745142Z *** Extract App detail from [C:\Applications\Email - Outlook REST API\Source\Microsoft_Email - Outlook REST API.app]
2022-10-04T04:45:12.2783921Z *** Extract App detail from [C:\Applications\Email - Outlook REST API\Test\Microsoft_Library Outlook REST API.app]
2022-10-04T04:45:12.2819457Z *** Extract App detail from [C:\Applications\Email - SMTP API\Source\Microsoft_Email - SMTP API.app]
2022-10-04T04:45:12.2861994Z *** Extract App detail from [C:\Applications\Email - SMTP API\Test\Microsoft_Email - SMTP API Tests.app]
2022-10-04T04:45:12.2892518Z *** Extract App detail from [C:\Applications\Email - SMTP API\Test Library\Microsoft_Email - SMTP API Test Library.app]
2022-10-04T04:45:12.2930202Z *** Extract App detail from [C:\Applications\Email - SMTP Connector\Source\Microsoft_Email - SMTP Connector.app]
2022-10-04T04:45:12.2976577Z *** Extract App detail from [C:\Applications\Email - SMTP Connector\Test\Microsoft_Email - SMTP Connector Tests.app]
2022-10-04T04:45:12.3018485Z *** Extract App detail from [C:\Applications\EmailLogging\Source\Microsoft__Exclude_Email Logging Using Graph API.app]
2022-10-04T04:45:12.3078604Z *** Extract App detail from [C:\Applications\EmailLogging\Test\Microsoft__Exclude_Email Logging Using Graph API Tests.app]
2022-10-04T04:45:12.3111821Z *** Extract App detail from [C:\Applications\EssentialBusinessHeadlines\Source\Microsoft_Essential Business Headlines.app]
2022-10-04T04:45:12.3158988Z *** Extract App detail from [C:\Applications\EssentialBusinessHeadlines\Test\Microsoft_Essential Business Headlines Test.app]
2022-10-04T04:45:12.3194448Z *** Extract App detail from [C:\Applications\Intrastat\Source\Microsoft_Intrastat Core.app]
2022-10-04T04:45:12.3249979Z *** Extract App detail from [C:\Applications\Intrastat\Test\Microsoft_Intrastat Core Tests.app]
2022-10-04T04:45:12.3282967Z *** Extract App detail from [C:\Applications\LatePaymentPredictor\Source\Microsoft_Late Payment Prediction.app]
2022-10-04T04:45:12.3326465Z *** Extract App detail from [C:\Applications\LatePaymentPredictor\Test\Microsoft_Late Payment Prediction Tests.app]
2022-10-04T04:45:12.3361516Z *** Extract App detail from [C:\Applications\microsoftuniversalprint\source\Microsoft_Universal Print Integration.app]
2022-10-04T04:45:12.3401207Z *** Extract App detail from [C:\Applications\onprem permissions\source\Microsoft_OnPrem Permissions.app]
2022-10-04T04:45:12.3479885Z *** Extract App detail from [C:\Applications\onprem permissions\test\Microsoft_OnPrem Permissions Tests.app]
2022-10-04T04:45:12.3512482Z *** Extract App detail from [C:\Applications\paypalpaymentsstandard\source\Microsoft_Payment Links to PayPal.app]
2022-10-04T04:45:12.3559147Z *** Extract App detail from [C:\Applications\paypalpaymentsstandard\test\Microsoft_PayPal Payments Standard Tests.app]
2022-10-04T04:45:12.3594646Z *** Extract App detail from [C:\Applications\PlanConfiguration\Source\Microsoft__Exclude_PlanConfiguration_.app]
2022-10-04T04:45:12.3639703Z *** Extract App detail from [C:\Applications\PlanConfiguration\Test\Microsoft__Exclude_PlanConfiguration_ Tests.app]
2022-10-04T04:45:12.3671286Z *** Extract App detail from [C:\Applications\recommendedapps\source\Microsoft_Recommended Apps.app]
2022-10-04T04:45:12.3706688Z *** Extract App detail from [C:\Applications\recommendedapps\test\Microsoft_Recommended Apps Tests.app]
2022-10-04T04:45:12.3736087Z *** Extract App detail from [C:\Applications\ReportLayouts\Source\Microsoft__Exclude_ReportLayouts.app]
2022-10-04T04:45:12.3779339Z *** Extract App detail from [C:\Applications\ReportLayouts\test\Microsoft_Report Layouts Tests.app]
2022-10-04T04:45:12.3801429Z *** Extract App detail from [C:\Applications\salesandinventoryforecast\source\Microsoft_Sales and Inventory Forecast.app]
2022-10-04T04:45:12.3855621Z *** Extract App detail from [C:\Applications\salesandinventoryforecast\test\Microsoft_Sales and Inventory Forecast Tests.app]
2022-10-04T04:45:12.3888228Z *** Extract App detail from [C:\Applications\sendtoemailprinter\source\Microsoft_Send To Email Printer.app]
2022-10-04T04:45:12.3929767Z *** Extract App detail from [C:\Applications\shopify\app\Microsoft_Shopify Connector.app]
2022-10-04T04:45:12.4031709Z *** Extract App detail from [C:\Applications\shopify\test\Microsoft_Shopify Connector Test.app]
2022-10-04T04:45:12.4072613Z *** Extract App detail from [C:\Applications\simplifiedbankstatementimport\source\Microsoft_Simplified Bank Statement Import.app]
2022-10-04T04:45:12.4124613Z *** Extract App detail from [C:\Applications\simplifiedbankstatementimport\test\Microsoft_Simplified Bank Statement Import Test.app]
2022-10-04T04:45:12.4151019Z *** Extract App detail from [C:\Applications\system application\source\Microsoft_System Application.app]
2022-10-04T04:45:12.4444176Z *** Extract App detail from [C:\Applications\system application\test\Microsoft_System Application Test Library.app]
2022-10-04T04:45:12.4502233Z *** Extract App detail from [C:\Applications\system application\test\Microsoft_System Application Test.app]
2022-10-04T04:45:12.4571778Z *** Extract App detail from [C:\Applications\testframework\performancetoolkit\Microsoft_Performance Toolkit Samples.app]
2022-10-04T04:45:12.4609410Z *** Extract App detail from [C:\Applications\testframework\performancetoolkit\Microsoft_Performance Toolkit Tests.app]
2022-10-04T04:45:12.4641773Z *** Extract App detail from [C:\Applications\testframework\performancetoolkit\Microsoft_Performance Toolkit.app]
2022-10-04T04:45:12.4677401Z *** Extract App detail from [C:\Applications\testframework\TestLibraries\Any\Microsoft_Any.app]
2022-10-04T04:45:12.4707786Z *** Extract App detail from [C:\Applications\testframework\TestLibraries\Assert\Microsoft_Library Assert.app]
2022-10-04T04:45:12.4737360Z *** Extract App detail from [C:\Applications\testframework\TestLibraries\permissions mock\Microsoft_Permissions Mock.app]
2022-10-04T04:45:12.4769398Z *** Extract App detail from [C:\Applications\testframework\TestLibraries\Variable Storage\Microsoft_Library Variable Storage.app]
2022-10-04T04:45:12.4800060Z *** Extract App detail from [C:\Applications\testframework\TestRunner\Microsoft_Test Runner.app]
2022-10-04T04:45:12.4837193Z *** Extract App detail from [C:\Applications\testframework\teststabilitytools\preventmetadataupdates\Microsoft_Prevent Metadata Updates.app]
2022-10-04T04:45:12.4867575Z *** Extract App detail from [C:\Applications\uksendremittanceadvice\source\Microsoft_Send remittance advice by email.app]
2022-10-04T04:45:12.4900693Z *** Extract App detail from [C:\Applications\vatgroupmanagement\source\Microsoft_VAT Group Management.app]
2022-10-04T04:45:12.4954741Z *** Extract App detail from [C:\Applications\vatgroupmanagement\test\Microsoft_VAT Group Management Tests.app]
2022-10-04T04:45:12.4984414Z *** Extract App detail from [C:\Applications.DK\Microsoft_Any_21.0.46256.47284.app]
2022-10-04T04:45:12.5014335Z *** Extract App detail from [C:\Applications.DK\Microsoft_Application_21.0.46256.47284.app]
2022-10-04T04:45:12.5045179Z *** Extract App detail from [C:\Applications.DK\Microsoft_Base Application_21.0.46256.47284.app]
2022-10-04T04:45:12.7288833Z *** Extract App detail from [C:\Applications.DK\Microsoft_BuildTools_21.0.46256.47284.app]
2022-10-04T04:45:12.7313929Z *** Extract App detail from [C:\Applications.DK\Microsoft_DemoTool_21.0.46256.47284.app]
2022-10-04T04:45:12.7448553Z *** Extract App detail from [C:\Applications.DK\Microsoft_Library Assert_21.0.46256.47284.app]
2022-10-04T04:45:12.7474357Z *** Extract App detail from [C:\Applications.DK\Microsoft_Library Variable Storage_21.0.46256.47284.app]
2022-10-04T04:45:12.7500510Z *** Extract App detail from [C:\Applications.DK\Microsoft_Performance Toolkit Samples_21.0.46256.47284.app]
2022-10-04T04:45:12.7532308Z *** Extract App detail from [C:\Applications.DK\Microsoft_Performance Toolkit Tests_21.0.46256.47284.app]
2022-10-04T04:45:12.7561840Z *** Extract App detail from [C:\Applications.DK\Microsoft_Performance Toolkit_21.0.46256.47284.app]
2022-10-04T04:45:12.7597377Z *** Extract App detail from [C:\Applications.DK\Microsoft_Permissions Mock_21.0.46256.47284.app]
2022-10-04T04:45:12.7620458Z *** Extract App detail from [C:\Applications.DK\Microsoft_System Application Test Library_21.0.46256.47284.app]
2022-10-04T04:45:12.7679108Z *** Extract App detail from [C:\Applications.DK\Microsoft_System Application_21.0.46256.47284.app]
2022-10-04T04:45:12.7953897Z *** Extract App detail from [C:\Applications.DK\Microsoft_Test Runner_21.0.46256.47284.app]
2022-10-04T04:45:12.7986281Z *** Extract App detail from [C:\Applications.DK\Microsoft_TestRunner-Internal_21.0.46256.47284.app]
2022-10-04T04:45:12.8024949Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Bank_21.0.46256.47284.app]
2022-10-04T04:45:12.8056597Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Cash Flow_21.0.46256.47284.app]
2022-10-04T04:45:12.8087763Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Cost Accounting_21.0.46256.47284.app]
2022-10-04T04:45:12.8118367Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-CRM integration_21.0.46256.47284.app]
2022-10-04T04:45:12.8152686Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Data Exchange_21.0.46256.47284.app]
2022-10-04T04:45:12.8186496Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Dimension_21.0.46256.47284.app]
2022-10-04T04:45:12.8220196Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-DotNet-Internal_21.0.46256.47284.app]
2022-10-04T04:45:12.8249597Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-ERM_21.0.46256.47284.app]
2022-10-04T04:45:12.8334313Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Fixed Asset_21.0.46256.47284.app]
2022-10-04T04:45:12.8368739Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-General Journal_21.0.46256.47284.app]
2022-10-04T04:45:12.8405077Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Graph_21.0.46256.47284.app]
2022-10-04T04:45:12.8437151Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Integration-Internal_21.0.46256.47284.app]
2022-10-04T04:45:12.8470667Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Integration_21.0.46256.47284.app]
2022-10-04T04:45:12.8510197Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Invoicing_21.0.46256.47284.app]
2022-10-04T04:45:12.8544099Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Job_21.0.46256.47284.app]
2022-10-04T04:45:12.8577314Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Local_21.0.46256.47284.app]
2022-10-04T04:45:12.8607343Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Marketing_21.0.46256.47284.app]
2022-10-04T04:45:12.8638492Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Misc_21.0.46256.47284.app]
2022-10-04T04:45:12.8690328Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-MOCKSERVICETESTS-Internal_21.0.46256.47284.app]
2022-10-04T04:45:12.8720182Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Monitor Sensitive Fields_21.0.46256.47284.app]
2022-10-04T04:45:12.8750357Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-NewObjects-Internal_21.0.46256.47284.app]
2022-10-04T04:45:12.8781306Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Performance-Internal_21.0.46256.47284.app]
2022-10-04T04:45:12.8824629Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Permissions_21.0.46256.47284.app]
2022-10-04T04:45:12.8854361Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Physical Inventory_21.0.46256.47284.app]
2022-10-04T04:45:12.8883360Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Prepayment_21.0.46256.47284.app]
2022-10-04T04:45:12.8915177Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Rapid Start_21.0.46256.47284.app]
2022-10-04T04:45:12.8946781Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Report_21.0.46256.47284.app]
2022-10-04T04:45:12.8982487Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Resource_21.0.46256.47284.app]
2022-10-04T04:45:12.9019285Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Reverse_21.0.46256.47284.app]
2022-10-04T04:45:12.9050212Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-SCM_21.0.46256.47284.app]
2022-10-04T04:45:12.9127728Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-SINGLESERVER-Internal_21.0.46256.47284.app]
2022-10-04T04:45:12.9156869Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-SINGLESERVER_21.0.46256.47284.app]
2022-10-04T04:45:12.9189524Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-SMB_21.0.46256.47284.app]
2022-10-04T04:45:12.9227076Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-TestLibraries_21.0.46256.47284.app]
2022-10-04T04:45:12.9321256Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Upgrade_21.0.46256.47284.app]
2022-10-04T04:45:12.9350244Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-User_21.0.46256.47284.app]
2022-10-04T04:45:12.9384145Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-VAT_21.0.46256.47284.app]
2022-10-04T04:45:12.9420440Z *** Extract App detail from [C:\Applications.DK\Microsoft_Tests-Workflow_21.0.46256.47284.app]
2022-10-04T04:45:12.9463474Z *** Extract App detail from [C:\Extensions\Microsoft_AMC Banking 365 Fundamentals_21.0.46256.47284.app]
2022-10-04T04:45:12.9511723Z *** Extract App detail from [C:\Extensions\Microsoft_Any_21.0.46256.47284.app]
2022-10-04T04:45:12.9538362Z *** Extract App detail from [C:\Extensions\Microsoft_API Reports - Finance_21.0.46256.47284.app]
2022-10-04T04:45:12.9587773Z *** Extract App detail from [C:\Extensions\Microsoft_Application_21.0.46256.47284.app]
2022-10-04T04:45:12.9613582Z *** Extract App detail from [C:\Extensions\Microsoft_Base Application_21.0.46256.47284.app]
2022-10-04T04:45:13.1280197Z *** Extract App detail from [C:\Extensions\Microsoft_Basic Experience_21.0.46256.47284.app]
2022-10-04T04:45:13.1328282Z *** Extract App detail from [C:\Extensions\Microsoft_Business Central Cloud Migration - Previous Release_21.0.46256.47284.app]
2022-10-04T04:45:13.1369886Z *** Extract App detail from [C:\Extensions\Microsoft_Business Central Cloud Migration API_21.0.46256.47284.app]
2022-10-04T04:45:13.1406929Z *** Extract App detail from [C:\Extensions\Microsoft_Business Central Intelligent Cloud_21.0.46256.47284.app]
2022-10-04T04:45:13.1443273Z *** Extract App detail from [C:\Extensions\Microsoft_C5 2012 Data Migration_21.0.46256.47284.app]
2022-10-04T04:45:13.1504253Z *** Extract App detail from [C:\Extensions\Microsoft_Company Hub_21.0.46256.47284.app]
2022-10-04T04:45:13.1560151Z *** Extract App detail from [C:\Extensions\Microsoft_Contoso Coffee Demo Dataset (DK)_21.0.46256.47284.app]
2022-10-04T04:45:13.1587499Z *** Extract App detail from [C:\Extensions\Microsoft_Contoso Coffee Demo Dataset_21.0.46256.47284.app]
2022-10-04T04:45:13.1636021Z *** Extract App detail from [C:\Extensions\Microsoft_Czech language (Czechia)_21.0.46256.47284.app]
2022-10-04T04:45:13.1667895Z *** Extract App detail from [C:\Extensions\Microsoft_Danish language (Denmark)_21.0.46256.47284.app]
2022-10-04T04:45:13.1854370Z *** Extract App detail from [C:\Extensions\Microsoft_Data Archive_21.0.46256.47284.app]
2022-10-04T04:45:13.1856037Z *** Extract App detail from [C:\Extensions\Microsoft_Data Search_21.0.46256.47284.app]
2022-10-04T04:45:13.1860190Z *** Extract App detail from [C:\Extensions\Microsoft_DK Core_21.0.46256.47284.app]
2022-10-04T04:45:13.1864767Z *** Extract App detail from [C:\Extensions\Microsoft_Dutch language (Belgium)_21.0.46256.47284.app]
2022-10-04T04:45:13.1884171Z *** Extract App detail from [C:\Extensions\Microsoft_Dutch language (Netherlands)_21.0.46256.47284.app]
2022-10-04T04:45:13.1929248Z *** Extract App detail from [C:\Extensions\Microsoft_Email - Current User Connector_21.0.46256.47284.app]
2022-10-04T04:45:13.1970118Z *** Extract App detail from [C:\Extensions\Microsoft_Email - Microsoft 365 Connector_21.0.46256.47284.app]
2022-10-04T04:45:13.2001473Z *** Extract App detail from [C:\Extensions\Microsoft_Email - Outlook REST API_21.0.46256.47284.app]
2022-10-04T04:45:13.2035915Z *** Extract App detail from [C:\Extensions\Microsoft_Email - SMTP API_21.0.46256.47284.app]
2022-10-04T04:45:13.2071313Z *** Extract App detail from [C:\Extensions\Microsoft_Email - SMTP Connector_21.0.46256.47284.app]
2022-10-04T04:45:13.2112743Z *** Extract App detail from [C:\Extensions\Microsoft_English language (Australia)_21.0.46256.47284.app]
2022-10-04T04:45:13.2153264Z *** Extract App detail from [C:\Extensions\Microsoft_English language (Canada)_21.0.46256.47284.app]
2022-10-04T04:45:13.2189656Z *** Extract App detail from [C:\Extensions\Microsoft_English language (New Zealand)_21.0.46256.47284.app]
2022-10-04T04:45:13.2222563Z *** Extract App detail from [C:\Extensions\Microsoft_English language (United Kingdom)_21.0.46256.47284.app]
2022-10-04T04:45:13.2258365Z *** Extract App detail from [C:\Extensions\Microsoft_English language (United States)_21.0.46256.47284.app]
2022-10-04T04:45:13.2290512Z *** Extract App detail from [C:\Extensions\Microsoft_Essential Business Headlines_21.0.46256.47284.app]
2022-10-04T04:45:13.2331956Z *** Extract App detail from [C:\Extensions\Microsoft_Finnish language (Finland)_21.0.46256.47284.app]
2022-10-04T04:45:13.2365029Z *** Extract App detail from [C:\Extensions\Microsoft_French language (Belgium)_21.0.46256.47284.app]
2022-10-04T04:45:13.2397960Z *** Extract App detail from [C:\Extensions\Microsoft_French language (Canada)_21.0.46256.47284.app]
2022-10-04T04:45:13.2427894Z *** Extract App detail from [C:\Extensions\Microsoft_French language (France)_21.0.46256.47284.app]
2022-10-04T04:45:13.2463661Z *** Extract App detail from [C:\Extensions\Microsoft_French language (Switzerland)_21.0.46256.47284.app]
2022-10-04T04:45:13.2495875Z *** Extract App detail from [C:\Extensions\Microsoft_German language (Austria)_21.0.46256.47284.app]
2022-10-04T04:45:13.2521804Z *** Extract App detail from [C:\Extensions\Microsoft_German language (Germany)_21.0.46256.47284.app]
2022-10-04T04:45:13.2554262Z *** Extract App detail from [C:\Extensions\Microsoft_German language (Switzerland)_21.0.46256.47284.app]
2022-10-04T04:45:13.2582302Z *** Extract App detail from [C:\Extensions\Microsoft_Icelandic language (Iceland)_21.0.46256.47284.app]
2022-10-04T04:45:13.2612996Z *** Extract App detail from [C:\Extensions\Microsoft_Intelligent Cloud Base_21.0.46256.47284.app]
2022-10-04T04:45:13.2663959Z *** Extract App detail from [C:\Extensions\Microsoft_Intrastat Core_21.0.46256.47284.app]
2022-10-04T04:45:13.2708153Z *** Extract App detail from [C:\Extensions\Microsoft_Italian language (Italy)_21.0.46256.47284.app]
2022-10-04T04:45:13.2743280Z *** Extract App detail from [C:\Extensions\Microsoft_Italian language (Switzerland)_21.0.46256.47284.app]
2022-10-04T04:45:13.2770429Z *** Extract App detail from [C:\Extensions\Microsoft_Late Payment Prediction_21.0.46256.47284.app]
2022-10-04T04:45:13.2814527Z *** Extract App detail from [C:\Extensions\Microsoft_Library Assert_21.0.46256.47284.app]
2022-10-04T04:45:13.2838911Z *** Extract App detail from [C:\Extensions\Microsoft_Library Variable Storage_21.0.46256.47284.app]
2022-10-04T04:45:13.2864050Z *** Extract App detail from [C:\Extensions\Microsoft_Microsoft Pay Payments_21.0.46256.47284.app]
2022-10-04T04:45:13.2904837Z *** Extract App detail from [C:\Extensions\Microsoft_Norwegian language (Norway)_21.0.46256.47284.app]
2022-10-04T04:45:13.2943434Z *** Extract App detail from [C:\Extensions\Microsoft_OIOUBL_21.0.46256.47284.app]
2022-10-04T04:45:13.3002031Z *** Extract App detail from [C:\Extensions\Microsoft_Payment and Reconciliation Formats (DK)_21.0.46256.47284.app]
2022-10-04T04:45:13.3056608Z *** Extract App detail from [C:\Extensions\Microsoft_Payment Links to PayPal_21.0.46256.47284.app]
2022-10-04T04:45:13.3096292Z *** Extract App detail from [C:\Extensions\Microsoft_Payroll Data Import Definitions (DK)_21.0.46256.47284.app]
2022-10-04T04:45:13.3134414Z *** Extract App detail from [C:\Extensions\Microsoft_Performance Toolkit_21.0.46256.47284.app]
2022-10-04T04:45:13.3169058Z *** Extract App detail from [C:\Extensions\Microsoft_Permissions Mock_21.0.46256.47284.app]
2022-10-04T04:45:13.3198116Z *** Extract App detail from [C:\Extensions\Microsoft_Recommended Apps_21.0.46256.47284.app]
2022-10-04T04:45:13.3233537Z *** Extract App detail from [C:\Extensions\Microsoft_Russian language (Russia)_21.0.46256.47284.app]
2022-10-04T04:45:13.3266366Z *** Extract App detail from [C:\Extensions\Microsoft_Sales and Inventory Forecast_21.0.46256.47284.app]
2022-10-04T04:45:13.3317072Z *** Extract App detail from [C:\Extensions\Microsoft_Send To Email Printer_21.0.46256.47284.app]
2022-10-04T04:45:13.3364384Z *** Extract App detail from [C:\Extensions\Microsoft_Shopify Connector_21.0.46256.47284.app]
2022-10-04T04:45:13.3451004Z *** Extract App detail from [C:\Extensions\Microsoft_Simplified Bank Statement Import_21.0.46256.47284.app]
2022-10-04T04:45:13.3495148Z *** Extract App detail from [C:\Extensions\Microsoft_Spanish language (Mexico)_21.0.46256.47284.app]
2022-10-04T04:45:13.3524488Z *** Extract App detail from [C:\Extensions\Microsoft_Spanish language (Spain)_21.0.46256.47284.app]
2022-10-04T04:45:13.3555126Z *** Extract App detail from [C:\Extensions\Microsoft_Swedish language (Sweden)_21.0.46256.47284.app]
2022-10-04T04:45:13.3588469Z *** Extract App detail from [C:\Extensions\Microsoft_System Application_21.0.46256.47284.app]
2022-10-04T04:45:13.3872816Z *** Extract App detail from [C:\Extensions\Microsoft_Tax File Formats (DK)_21.0.46256.47284.app]
2022-10-04T04:45:13.3913855Z *** Extract App detail from [C:\Extensions\Microsoft_Test Runner_21.0.46256.47284.app]
2022-10-04T04:45:13.3949432Z *** Extract App detail from [C:\Extensions\Microsoft_Troubleshoot FA Ledger Entries_21.0.46256.47284.app]
2022-10-04T04:45:13.3990746Z *** Extract App detail from [C:\Extensions\Microsoft_Universal Print Integration_21.0.46256.47284.app]
2022-10-04T04:45:13.4034642Z *** Extract App detail from [C:\Extensions\Microsoft_VAT Group Management_21.0.46256.47284.app]
2022-10-04T04:45:13.4081451Z *** Extract App detail from [C:\Extensions\Microsoft_WorldPay Payments Standard_21.0.46256.47284.app]
2022-10-04T04:45:13.4131161Z *** Extract App detail from [C:\Extensions\Microsoft__Exclude_AnonymizedDataSharing__21.0.46256.47284.app]
2022-10-04T04:45:13.4176351Z *** Extract App detail from [C:\Extensions\Microsoft__Exclude_APIV1__21.0.46256.47284.app]
2022-10-04T04:45:13.4228170Z *** Extract App detail from [C:\Extensions\Microsoft__Exclude_APIV2__21.0.46256.47284.app]
2022-10-04T04:45:13.4300502Z *** Extract App detail from [C:\Extensions\Microsoft__Exclude_Bank Deposits_21.0.46256.47284.app]
2022-10-04T04:45:13.4352443Z *** Extract App detail from [C:\Extensions\Microsoft__Exclude_ClientAddIns__21.0.46256.47284.app]
2022-10-04T04:45:13.4390111Z *** Extract App detail from [C:\Extensions\Microsoft__Exclude_Connectivity Apps_21.0.46256.47284.app]
2022-10-04T04:45:13.4436204Z *** Extract App detail from [C:\Extensions\Microsoft__Exclude_Email Logging Using Graph API_21.0.46256.47284.app]
2022-10-04T04:45:13.4487462Z *** Extract App detail from [C:\Extensions\Microsoft__Exclude_Microsoft Dynamics 365 - SmartList_21.0.46256.47284.app]
2022-10-04T04:45:13.4546742Z *** Extract App detail from [C:\Extensions\Microsoft__Exclude_PlanConfiguration__21.0.46256.47284.app]
2022-10-04T04:45:13.4595370Z *** Extract App detail from [C:\Extensions\Microsoft__Exclude_ReportLayouts_21.0.46256.47284.app]
2022-10-04T04:45:13.4627090Z *** Extract App detail from [C:\Extensions\Microsoft__Exclude_SyncBaseApp__21.0.46256.47284.app]
2022-10-04T04:45:13.4664273Z *** Remove duplicate Apps
2022-10-04T04:45:24.0630398Z *** Substitute W1 extensions with localised versions if available
2022-10-04T04:45:24.0801080Z *** Substitute Extension: [Microsoft / Library Assert]
2022-10-04T04:45:24.0864843Z *** Substitute Extension: [Microsoft / System Application]
2022-10-04T04:45:24.0908399Z *** Substitute Extension: [Microsoft / Any]
2022-10-04T04:45:24.1001484Z *** Substitute Extension: [Microsoft / Library Variable Storage]
2022-10-04T04:45:24.1038782Z *** Substitute Extension: [Microsoft / System Application Test Library]
2022-10-04T04:45:24.1076493Z *** Substitute Extension: [Microsoft / Permissions Mock]
2022-10-04T04:45:24.1125122Z *** Substitute Extension: [Microsoft / Tests-TestLibraries]
2022-10-04T04:45:24.1186434Z *** Substitute Extension: [Microsoft / Test Runner]
2022-10-04T04:45:24.1232671Z *** Substitute Extension: [Microsoft / Base Application]
2022-10-04T04:45:24.1277778Z *** Substitute Extension: [Microsoft / Email - Outlook REST API]
2022-10-04T04:45:24.1339957Z *** Substitute Extension: [Microsoft / Email - SMTP API]
2022-10-04T04:45:24.1383219Z *** Substitute Extension: [Microsoft / Performance Toolkit]
2022-10-04T04:45:24.1462696Z *** Substitute Extension: [Microsoft / Email - Current User Connector]
2022-10-04T04:45:24.1507655Z *** Substitute Extension: [Microsoft / Email - Microsoft 365 Connector]
2022-10-04T04:45:24.1569606Z *** Substitute Extension: [Microsoft / VAT Group Management]
2022-10-04T04:45:24.1613671Z *** Substitute Extension: [Microsoft / _Exclude_Email Logging Using Graph API]
2022-10-04T04:45:24.1657361Z *** Substitute Extension: [Microsoft / Email - SMTP Connector]
2022-10-04T04:45:24.1700180Z *** Substitute Extension: [Microsoft / Contoso Coffee Demo Dataset]
2022-10-04T04:45:24.1768588Z *** Substitute Extension: [Microsoft / Data Search]
2022-10-04T04:45:24.1838946Z *** Substitute Extension: [Microsoft / Data Archive]
2022-10-04T04:45:24.1891952Z *** Substitute Extension: [Microsoft / _Exclude_PlanConfiguration_]
2022-10-04T04:45:24.1950932Z *** Substitute Extension: [Microsoft / Payment Links to PayPal]
2022-10-04T04:45:24.1996742Z *** Substitute Extension: [Microsoft / Sales and Inventory Forecast]
2022-10-04T04:45:24.2039327Z *** Substitute Extension: [Microsoft / Recommended Apps]
2022-10-04T04:45:24.2081386Z *** Substitute Extension: [Microsoft / _Exclude_APIV1_]
2022-10-04T04:45:24.2122896Z *** Substitute Extension: [Microsoft / _Exclude_ReportLayouts]
2022-10-04T04:45:24.2181452Z *** Substitute Extension: [Microsoft / _Exclude_APIV2_]
2022-10-04T04:45:24.2221777Z *** Substitute Extension: [Microsoft / _Exclude_Bank Deposits]
2022-10-04T04:45:24.2262927Z *** Substitute Extension: [Microsoft / Late Payment Prediction]
2022-10-04T04:45:24.2304752Z *** Substitute Extension: [Microsoft / Essential Business Headlines]
2022-10-04T04:45:24.2357817Z *** Substitute Extension: [Microsoft / Simplified Bank Statement Import]
2022-10-04T04:45:24.2404797Z *** Substitute Extension: [Microsoft / Intrastat Core]
2022-10-04T04:45:24.2440823Z *** Substitute Extension: [Microsoft / Shopify Connector]
2022-10-04T04:45:24.2488084Z *** Substitute Extension: [Microsoft / Tests-Dimension]
2022-10-04T04:45:24.2543113Z *** Substitute Extension: [Microsoft / Tests-Data Exchange]
2022-10-04T04:45:24.2585404Z *** Substitute Extension: [Microsoft / Tests-CRM integration]
2022-10-04T04:45:24.2626724Z *** Substitute Extension: [Microsoft / Tests-General Journal]
2022-10-04T04:45:24.2665746Z *** Substitute Extension: [Microsoft / Tests-Fixed Asset]
2022-10-04T04:45:24.2720901Z *** Substitute Extension: [Microsoft / Tests-ERM]
2022-10-04T04:45:24.2764727Z *** Substitute Extension: [Microsoft / Tests-Cost Accounting]
2022-10-04T04:45:24.2806055Z *** Substitute Extension: [Microsoft / Swedish language (Sweden)]
2022-10-04T04:45:24.2846901Z *** Substitute Extension: [Microsoft / Spanish language (Spain)]
2022-10-04T04:45:24.2889281Z *** Substitute Extension: [Microsoft / Spanish language (Mexico)]
2022-10-04T04:45:24.2945293Z *** Substitute Extension: [Microsoft / Tests-Cash Flow]
2022-10-04T04:45:24.2986052Z *** Substitute Extension: [Microsoft / Tests-Bank]
2022-10-04T04:45:24.3056326Z *** Substitute Extension: [Microsoft / Tests-Graph]
2022-10-04T04:45:24.3112496Z *** Substitute Extension: [Microsoft / Tests-Prepayment]
2022-10-04T04:45:24.3153940Z *** Substitute Extension: [Microsoft / Tests-Physical Inventory]
2022-10-04T04:45:24.3196368Z *** Substitute Extension: [Microsoft / Tests-Permissions]
2022-10-04T04:45:24.3237824Z *** Substitute Extension: [Microsoft / Tests-Resource]
2022-10-04T04:45:24.3293510Z *** Substitute Extension: [Microsoft / Tests-Report]
2022-10-04T04:45:24.3335501Z *** Substitute Extension: [Microsoft / Tests-Rapid Start]
2022-10-04T04:45:24.3373536Z *** Substitute Extension: [Microsoft / Tests-Monitor Sensitive Fields]
2022-10-04T04:45:24.3413220Z *** Substitute Extension: [Microsoft / Tests-Job]
2022-10-04T04:45:24.3451380Z *** Substitute Extension: [Microsoft / Tests-Invoicing]
2022-10-04T04:45:24.3507093Z *** Substitute Extension: [Microsoft / Tests-Integration]
2022-10-04T04:45:24.3546929Z *** Substitute Extension: [Microsoft / Tests-Misc]
2022-10-04T04:45:24.3588636Z *** Substitute Extension: [Microsoft / Tests-Marketing]
2022-10-04T04:45:24.3630727Z *** Substitute Extension: [Microsoft / Tests-Local]
2022-10-04T04:45:24.3686475Z *** Substitute Extension: [Microsoft / English language (Australia)]
2022-10-04T04:45:24.3729461Z *** Substitute Extension: [Microsoft / Dutch language (Netherlands)]
2022-10-04T04:45:24.3770910Z *** Substitute Extension: [Microsoft / Dutch language (Belgium)]
2022-10-04T04:45:24.3813215Z *** Substitute Extension: [Microsoft / English language (United Kingdom)]
2022-10-04T04:45:24.3869293Z *** Substitute Extension: [Microsoft / English language (New Zealand)]
2022-10-04T04:45:24.3910806Z *** Substitute Extension: [Microsoft / English language (Canada)]
2022-10-04T04:45:24.3952728Z *** Substitute Extension: [Microsoft / Danish language (Denmark)]
2022-10-04T04:45:24.4068212Z *** Substitute Extension: [Microsoft / API Reports - Finance]
2022-10-04T04:45:24.4110616Z *** Substitute Extension: [Microsoft / Czech language (Czechia)]
2022-10-04T04:45:24.4185037Z *** Substitute Extension: [Microsoft / Application]
2022-10-04T04:45:24.4246327Z *** Substitute Extension: [Microsoft / English language (United States)]
2022-10-04T04:45:24.4284110Z *** Substitute Extension: [Microsoft / Italian language (Italy)]
2022-10-04T04:45:24.4323369Z *** Substitute Extension: [Microsoft / Icelandic language (Iceland)]
2022-10-04T04:45:24.4363533Z *** Substitute Extension: [Microsoft / German language (Switzerland)]
2022-10-04T04:45:24.4422758Z *** Substitute Extension: [Microsoft / Russian language (Russia)]
2022-10-04T04:45:24.4464028Z *** Substitute Extension: [Microsoft / Norwegian language (Norway)]
2022-10-04T04:45:24.4506323Z *** Substitute Extension: [Microsoft / Italian language (Switzerland)]
2022-10-04T04:45:24.4551304Z *** Substitute Extension: [Microsoft / German language (Germany)]
2022-10-04T04:45:24.4586925Z *** Substitute Extension: [Microsoft / French language (Canada)]
2022-10-04T04:45:24.4643673Z *** Substitute Extension: [Microsoft / French language (Belgium)]
2022-10-04T04:45:24.4684449Z *** Substitute Extension: [Microsoft / Finnish language (Finland)]
2022-10-04T04:45:24.4726504Z *** Substitute Extension: [Microsoft / German language (Austria)]
2022-10-04T04:45:24.4769429Z *** Substitute Extension: [Microsoft / French language (Switzerland)]
2022-10-04T04:45:24.4827314Z *** Substitute Extension: [Microsoft / French language (France)]
2022-10-04T04:45:24.4869218Z *** Substitute Extension: [Microsoft / Tests-Reverse]
2022-10-04T04:45:24.5013961Z *** Substitute Extension: [Microsoft / Performance Toolkit Tests]
2022-10-04T04:45:24.5084267Z *** Substitute Extension: [Microsoft / Send To Email Printer]
2022-10-04T04:45:24.5170584Z *** Substitute Extension: [Microsoft / Performance Toolkit Samples]
2022-10-04T04:45:24.5302341Z *** Substitute Extension: [Microsoft / Company Hub]
2022-10-04T04:45:24.5356249Z *** Substitute Extension: [Microsoft / _Exclude_ClientAddIns_]
2022-10-04T04:45:24.5466141Z *** Substitute Extension: [Microsoft / Troubleshoot FA Ledger Entries]
2022-10-04T04:45:24.5518350Z *** Substitute Extension: [Microsoft / Tests-Workflow]
2022-10-04T04:45:24.5556680Z *** Substitute Extension: [Microsoft / Tests-SMB]
2022-10-04T04:45:24.5598789Z *** Substitute Extension: [Microsoft / Tests-SINGLESERVER]
2022-10-04T04:45:24.5638011Z *** Substitute Extension: [Microsoft / Tests-SCM]
2022-10-04T04:45:24.5693516Z *** Substitute Extension: [Microsoft / Tests-VAT]
2022-10-04T04:45:24.5737409Z *** Substitute Extension: [Microsoft / Tests-User]
2022-10-04T04:45:24.5778359Z *** Substitute Extension: [Microsoft / Tests-Upgrade]
2022-10-04T04:45:24.6050449Z *** Substitute Extension: [Microsoft / Universal Print Integration]
2022-10-04T04:45:24.6263635Z *** Available Applications:
2022-10-04T04:45:24.8155455Z *** Installing Applications:
2022-10-04T04:45:24.8323418Z *** Get App Info: C:\Extensions\Microsoft_Library Assert_21.0.46256.47284.app
2022-10-04T04:45:24.8431082Z *** Get App Tenant Info
2022-10-04T04:45:25.3008721Z *** Sync App: [Microsoft / Library Assert]
2022-10-04T04:45:25.8448840Z *** Install App: [Microsoft / Library Assert]
2022-10-04T04:45:33.8970692Z ***
2022-10-04T04:45:33.8973144Z *** Get App Info: C:\Applications.DK\Microsoft_Library Assert_21.0.46256.47284.app
2022-10-04T04:45:33.8984438Z *** Get App Tenant Info
2022-10-04T04:45:33.9460652Z *** Sync App: [Microsoft / Library Assert]
2022-10-04T04:45:33.9704750Z WARNING: Cannot synchronize the extension Library Assert with app ID dd0be2ea-f733-4d65-bb34-a28f4624fb14 because it is
2022-10-04T04:45:33.9706456Z  already synchronized.
2022-10-04T04:45:33.9707809Z ***
2022-10-04T04:45:33.9720885Z *** Get App Info: C:\Extensions\Microsoft_Any_21.0.46256.47284.app
2022-10-04T04:45:33.9747136Z *** Get App Tenant Info
2022-10-04T04:45:33.9963442Z *** Sync App: [Microsoft / Any]
2022-10-04T04:45:34.0298782Z *** Install App: [Microsoft / Any]
2022-10-04T04:45:34.7372014Z ***
2022-10-04T04:45:34.7384248Z *** Get App Info: C:\Applications.DK\Microsoft_Any_21.0.46256.47284.app
2022-10-04T04:45:34.7412992Z *** Get App Tenant Info
2022-10-04T04:45:34.7641117Z *** Sync App: [Microsoft / Any]
2022-10-04T04:45:34.7841656Z WARNING: Cannot synchronize the extension Any with app ID e7320ebb-08b3-4406-b1ec-b4927d3e280b because it is already 
2022-10-04T04:45:34.7842495Z synchronized.
2022-10-04T04:45:34.7854341Z ***
2022-10-04T04:45:34.7866855Z *** Get App Info: C:\Extensions\Microsoft_Library Variable Storage_21.0.46256.47284.app
2022-10-04T04:45:34.7902693Z *** Get App Tenant Info
2022-10-04T04:45:34.8200973Z *** Sync App: [Microsoft / Library Variable Storage]
2022-10-04T04:45:34.8582818Z *** Install App: [Microsoft / Library Variable Storage]
2022-10-04T04:45:35.7215096Z ***
2022-10-04T04:45:35.7249765Z *** Get App Info: C:\Applications.DK\Microsoft_Library Variable Storage_21.0.46256.47284.app
2022-10-04T04:45:35.7280074Z *** Get App Tenant Info
2022-10-04T04:45:35.7514972Z *** Sync App: [Microsoft / Library Variable Storage]
2022-10-04T04:45:35.7701295Z WARNING: Cannot synchronize the extension Library Variable Storage with app ID 5095f467-0a01-4b99-99d1-9ff1237d286f 
2022-10-04T04:45:35.7702076Z because it is already synchronized.
2022-10-04T04:45:35.7713871Z ***
2022-10-04T04:45:35.7726675Z *** Get App Info: C:\Applications.DK\Microsoft_System Application Test Library_21.0.46256.47284.app
2022-10-04T04:45:35.7775154Z *** Get App Tenant Info
2022-10-04T04:45:35.7993304Z *** Publish App: [Microsoft / System Application Test Library]
2022-10-04T04:45:35.9550991Z ##[error]AL-TestTool installation failed: Sorry, we can't proceed with the operation for app 'System Application Test Library' by 'Microsoft' for tenant 'nav-systemapplication' because the app  doesn’t meet our Universal Code requirement.
2022-10-04T04:45:35.9568354Z 
2022-10-04T04:45:35.9569121Z You must either upgrade the app to meet the requirement or license the non-Universal Code module that grants an exception to the requirement.
2022-10-04T04:45:35.9569615Z 
2022-10-04T04:45:35.9570043Z For more information, see https://aka.ms/bcUniversalCode.
2022-10-04T04:45:35.9574165Z *** AL-TestTool installation finished.
2022-10-04T04:45:35.9604222Z 
2022-10-04T04:45:35.9622507Z *** Disconnect Docker session.
2022-10-04T04:45:35.9643546Z *** Remove Docker session.
2022-10-04T04:45:35.9654640Z *** Docker session removed.
2022-10-04T04:45:35.9663460Z *** AL-Extension Published to ALOps Repository
2022-10-04T04:45:35.9746682Z *** Cleanup VSTS Environment: True
2022-10-04T04:45:38.2568524Z ##[section]Finishing: ALOps Install AL TestTool

Expected behavior A clear and concise description of what you expected to happen.

Screenshots If applicable, add screenshots to help explain your problem. You can easily paste them in here.

Additional context Add any other context about the problem here.

kasperdj commented 1 year ago

Put this on hold for now - further investigations hint that it's working on a CRONUS license but not on a BC21 developer license

Arthurvdv commented 1 year ago

I think related to https://github.com/microsoft/navcontainerhelper/issues/2720.

We're also blocked by this issue at the moment.

waldo1001 commented 1 year ago

Seems that the artifacts need a rebuild.. .

https://github.com/microsoft/AL-Go/issues/221#issuecomment-1266609257

freddydk commented 1 year ago

Just posted an announcement on Yammer describing this problem. https://www.yammer.com/dynamicsnavdev/#/Threads/show?threadId=1944761703292928

waldo1001 commented 1 year ago

In short, 3 options:

kasperdj commented 1 year ago

Thx for input. Not an ALOps issue.