Closed FrancescElies closed 4 years ago
π₯ Something is definitely not ok. The following does not work either.
- checkout: self
lfs: true
clean: true
persistCredentials: true # needed for calling git via script
# To uncomment https://github.com/actions/virtual-environments/issues/1064 needs to be fixed and `lfs: true` --> `lfs: false`
# - script: git lfs pull --include afolder,anotherfolder
# displayName: "[git-lfs] Pull images"
``` Syncing repository: eklang (Git) Prepending Path environment variable with directory containing 'git.exe'. git version git version 2.26.2.windows.1 git config --get remote.origin.url git clean -ffdx Removing DevOps/01-job1-build-infos.txt git reset --hard HEAD HEAD is now at 467ffe8c6 [ci] makes vdp build optional git config gc.auto 0 git config --get-all http.https://*******.visualstudio.com/AST/_git/****.extraheader git config --get-all http.proxy git lfs install --local git: 'lfs' is not a git command. See 'git --help'. ##[error]Git-lfs installation failed with exit code: 1 ```
Hello! Could you please share the whole YAML pipeline (the part before checkout steps, like pool selection and etc)?
I can't reproduce it from my side:
pool:
vmImage: 'vs2017-win2016'
steps:
- checkout: self
lfs: true
clean: true
persistCredentials: true # needed for calling git via script
- script: git lfs --version
- script: git lfs pull --include afolder,anotherfolder
displayName: "[git-lfs] Pull dependencies"
``` ##[section]Starting: Checkout v-malob@master to s ============================================================================== Task : Get sources Description : Get sources from a repository. Supports Git, TfsVC, and SVN repositories. ============================================================================== Syncing repository: *** Prepending Path environment variable with directory containing 'git.exe'. ##[command]git version git version 2.26.2.windows.1 ##[command]git lfs version git-lfs/2.11.0 (GitHub; windows amd64; go 1.14.2; git 48b28d97) ##[command]git init "D:\a\1\s" Initialized empty Git repository in D:/a/1/s/.git/ ##[command]git remote add origin *** ##[command]git config gc.auto 0 ##[command]git config --get-all *** ##[command]git config --get-all http.proxy ##[command]git lfs install --local Updated git hooks. Git LFS initialized. ##[section]Finishing: Checkout v-malob@master to s ##[section]Starting: CmdLine ============================================================================== Task : Command line Description : Run a command line script using Bash on Linux and macOS and cmd.exe on Windows ============================================================================== Generating script. Script contents: git lfs --version ========================== Starting Command Output =========================== ##[command]"C:\windows\system32\cmd.exe" /D /E:ON /V:OFF /S /C "CALL "D:\a\_temp\eaab1c10-4ce9-45f6-8fd2-f2b202309a7e.cmd"" git-lfs/2.11.0 (GitHub; windows amd64; go 1.14.2; git 48b28d97) ##[section]Finishing: CmdLine ##[section]Starting: [git-lfs] Pull dependencies ============================================================================== Task : Command line Description : Run a command line script using Bash on Linux and macOS and cmd.exe on Windows Version : 2.164.2 Author : Microsoft Corporation Help : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/command-line ============================================================================== Generating script. Script contents: git lfs pull --include afolder,anotherfolder ========================== Starting Command Output =========================== ##[command]"C:\windows\system32\cmd.exe" /D /E:ON /V:OFF /S /C "CALL "D:\a\_temp\837f9347-1c1b-48c7-8705-b80078709b63.cmd"" ##[section]Finishing: [git-lfs] Pull dependencies ```
I can't do that, I'm at the moment not in an opensource project. The gist of what I am doing is what I pasted above., I can share the link to the build with lfs: true though, does this help?
Here another example link to a build with "lfs: false" and explicit "git lfs pull"
Unfortunately, I don't have permissions to see builds and projects.
But I have found interesting fact, it looks like git checkout
step doesn't use git that is pre-installed on image and it brings own version of git. Also it overloads default image git and custom git is used for next steps.
You can confirm it using the following code:
steps:
- script: where git && git --version && git lfs --version
- checkout: self
lfs: true
clean: true
persistCredentials: true # needed for calling git via script
- script: where git && git --version && git lfs --version
Before checkout:
C:\Program Files\Git\bin\git.exe
git version 2.27.0.windows.1
git-lfs/2.11.0 (GitHub; windows amd64; go 1.14.2; git 48b28d97)
After checkout:
C:\agents\2.170.1\externals\git\cmd\git.exe
git version 2.26.2.windows.1
git-lfs/2.11.0 (GitHub; windows amd64; go 1.14.2; git 48b28d97)
We don't put "externals" folder to image during image-generation. Probably, It is added later during image deployment and if "externals" update is not propagated everywhere, it explains why I can't repro it from my side. Let us investigate it more and find where "externals" folder come from
@FrancescElies , could you please add 1 line script:
- script: where git && git --version && git lfs --version
after checkout step and share the output?
I am looking for the checkout task, is it located in https://github.com/microsoft/azure-pipelines-tasks? So far I could not find it.
@maxim-lobanov see below my results
- script: where git && git --version && git lfs --version
did not work, here the build
``` ##[error]INFO: Could not find files for the given pattern(s). ##[error]Cmd.exe exited with code '1'. ```
Using the following instead
- powershell: |
get-command git
git --version
git lfs --version
I get a different behaviour depending on the job, see results
``` ##[error]get-command : The term 'git' is not recognized as the name of a cmdlet, function, script file, or operable program. ##[error]Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At D:\a\_temp\2718fad9-54cb-462d-85f4-3ad03ff0a017.ps1:3 char:1 ##[error]+ get-command git ##[error]+ ~~~~~~~~~~~~~~~ ##[error] + CategoryInfo : ObjectNotFound: (git:String) [Get-Command], CommandNotFoundException ##[error] + FullyQualifiedErrorId : CommandNotFoundException,Microsoft.PowerShell.Commands.GetCommandCommand ##[error] ##[error]PowerShell exited with code '1'. ```
Before checkout ``` CommandType Name Version Source ----------- ---- ------- ------ Application git.exe 2.27.0.1 C:\Program Files\Git\bin\git.exe git version 2.27.0.windows.1 git-lfs/2.11.0 (GitHub; windows amd64; go 1.14.2; git 48b28d97) ``` After checkout ``` CommandType Name Version Source ----------- ---- ------- ------ Application git.exe 2.26.2.1 C:\agents\2.170.1\externals\git\cmd\gi... git version 2.26.2.windows.1 git-lfs/2.11.0 (GitHub; windows amd64; go 1.14.2; git 48b28d97) ```
We just added git-lfs to the mix (see build), results are interesting
Before the Checkout
CommandType Name Version Source
----------- ---- ------- ------
Application git.exe 2.27.0.1 C:\Program Files\Git\bin\git.exe
Application git-lfs.exe 2.27.0.1 C:\Program Files\Git\cmd\git-lfs.exe
git version 2.27.0.windows.1
git-lfs/2.11.0 (GitHub; windows amd64; go 1.14.2; git 48b28d97)
After checkout
CommandType Name Version Source
----------- ---- ------- ------
Application git.exe 2.26.2.1 C:\agents\2.170.1\externals\git\cmd\gi...
Application git-lfs.exe 2.27.0.1 C:\Program Files\Git\cmd\git-lfs.exe
git version 2.26.2.windows.1
git-lfs/2.11.0 (GitHub; windows amd64; go 1.14.2; git 48b28d97)
The source path and version changes for git but not for git-lfs
@FrancescElies , Thank you for providing additional details. Yep, we just found the same. Looks like "Checkout" step overrides git but git-lfs
is still used from image.
This issue is not random and is reproduced stably, right?
Could you please also share the logs of "Initialize job" step for build where you see "[error]git: 'lfs' is not a git command" error. This step contains image version and machine name and doesn't contain any sensetive information.
@FrancescElies , Thank you for providing additional details. Yep, we just found the same. Looks like "Checkout" step overrides git but
git-lfs
is still used from image. This issue is not random and is reproduced stably, right?
The problem can be reproduced every time but I wonder why for the same image depending on which job runs is green/red.
I suppose you have some changes that have not been rolled out to all machines, right?
Could you please also share the logs of "Initialize job" step for build where you see "[error]git: 'lfs' is not a git command" error. This step contains image version and machine name and doesn't contain any sensetive information.
I can paste that output since it does not contain any critical infos apart from job names.
'git' is not recognized as the name of a cmdlet
``` 2020-06-17T09:47:48.9529656Z ##[section]Starting: (clang) run ASAN analysis 2020-06-17T09:47:49.1700016Z ##[section]Starting: Initialize job 2020-06-17T09:47:49.1701383Z Agent name: 'Azure Pipelines 2' 2020-06-17T09:47:49.1701692Z Agent machine name: 'fv-az9' 2020-06-17T09:47:49.1701918Z Current agent version: '2.170.1' 2020-06-17T09:47:49.1727473Z Agent running as: 'VssAdministrator' 2020-06-17T09:47:49.1773295Z Prepare build directory. 2020-06-17T09:47:49.2199321Z Set build variables. 2020-06-17T09:47:49.2232869Z Download all required tasks. 2020-06-17T09:47:49.2513010Z Checking job knob settings. 2020-06-17T09:47:49.2521812Z Knob: AgentPerflog = c:\vsts\perflog Source: ${VSTS_AGENT_PERFLOG} 2020-06-17T09:47:49.2522357Z Finished checking job knob settings. 2020-06-17T09:47:49.2978248Z Start tracking orphan processes. 2020-06-17T09:47:49.3054415Z ##[section]Finishing: Initialize job 2020-06-17T09:47:49.3402297Z ##[section]Starting: PowerShell 2020-06-17T09:47:49.3986222Z ============================================================================== 2020-06-17T09:47:49.3986879Z Task : PowerShell 2020-06-17T09:47:49.3987297Z Description : Run a PowerShell script on Linux, macOS, or Windows 2020-06-17T09:47:49.3987552Z Version : 2.170.1 2020-06-17T09:47:49.3987908Z Author : Microsoft Corporation 2020-06-17T09:47:49.3988647Z Help : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell 2020-06-17T09:47:49.3988993Z ============================================================================== 2020-06-17T09:47:50.2625421Z Generating script. 2020-06-17T09:47:50.3043527Z ========================== Starting Command Output =========================== 2020-06-17T09:47:50.3489596Z ##[command]"C:\windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'd:\a\_temp\6d629cb5-cc90-4a23-b736-67b61e7922dc.ps1'" 2020-06-17T09:47:50.8078805Z ##[error]get-command : The term 'git' is not recognized as the name of a cmdlet, function, script file, or operable program. Che 2020-06-17T09:47:50.8658838Z ##[error]ck the spelling of the name, or if a path was included, verify that the path is correct and try again. 2020-06-17T09:47:50.8725860Z ##[error]At D:\a\_temp\6d629cb5-cc90-4a23-b736-67b61e7922dc.ps1:3 char:1 2020-06-17T09:47:50.8788104Z ##[error]+ get-command git 2020-06-17T09:47:50.8850551Z ##[error]+ ~~~~~~~~~~~~~~~ 2020-06-17T09:47:50.8912947Z ##[error] + CategoryInfo : ObjectNotFound: (git:String) [Get-Command], CommandNotFoundException 2020-06-17T09:47:50.8973316Z ##[error] + FullyQualifiedErrorId : CommandNotFoundException,Microsoft.PowerShell.Commands.GetCommandCommand 2020-06-17T09:47:50.9042787Z ##[error] 2020-06-17T09:47:50.9134365Z ##[error]PowerShell exited with code '1'. 2020-06-17T09:47:50.9574553Z ##[section]Finishing: PowerShell 2020-06-17T09:47:50.9716046Z ##[section]Starting: [venv] [microsoft-hosted] Add Conda Scripts to PATH 2020-06-17T09:47:50.9841872Z ============================================================================== 2020-06-17T09:47:50.9842936Z Task : PowerShell 2020-06-17T09:47:50.9843225Z Description : Run a PowerShell script on Linux, macOS, or Windows 2020-06-17T09:47:50.9843488Z Version : 2.170.1 2020-06-17T09:47:50.9843771Z Author : Microsoft Corporation 2020-06-17T09:47:50.9844110Z Help : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell 2020-06-17T09:47:50.9844481Z ============================================================================== 2020-06-17T09:47:51.8113969Z Generating script. 2020-06-17T09:47:51.8484057Z ========================== Starting Command Output =========================== 2020-06-17T09:47:51.8746034Z ##[command]"C:\windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'd:\a\_temp\61effe32-0326-4ab2-8045-a18b0a034326.ps1'" 2020-06-17T09:47:52.1993499Z ##[section]Finishing: [venv] [microsoft-hosted] Add Conda Scripts to PATH 2020-06-17T09:47:52.2303378Z ##[section]Starting: [clang] [artifact] Publish Artifact 2020-06-17T09:47:52.2456702Z ============================================================================== 2020-06-17T09:47:52.2457031Z Task : Publish build artifacts 2020-06-17T09:47:52.2457344Z Description : Publish build artifacts to Azure Pipelines or a Windows file share 2020-06-17T09:47:52.2457634Z Version : 1.158.3 2020-06-17T09:47:52.2457855Z Author : Microsoft Corporation 2020-06-17T09:47:52.2458198Z Help : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/publish-build-artifacts 2020-06-17T09:47:52.2458594Z ============================================================================== 2020-06-17T09:47:52.4874338Z ##[error]Publishing build artifacts failed with an error: Not found PathtoPublish: d:\a\104\TestResults\clang-results 2020-06-17T09:47:52.4954838Z ##[section]Finishing: [clang] [artifact] Publish Artifact 2020-06-17T09:47:52.4984833Z ##[section]Starting: [clang] [results] publish pytest results (ASAN) 2020-06-17T09:47:52.5097587Z ============================================================================== 2020-06-17T09:47:52.5097907Z Task : Publish Test Results 2020-06-17T09:47:52.5098159Z Description : Publish test results to Azure Pipelines 2020-06-17T09:47:52.5098393Z Version : 2.170.0 2020-06-17T09:47:52.5098613Z Author : Microsoft Corporation 2020-06-17T09:47:52.5098998Z Help : https://docs.microsoft.com/azure/devops/pipelines/tasks/test/publish-test-results 2020-06-17T09:47:52.5099364Z ============================================================================== 2020-06-17T09:47:52.7533560Z ##[warning]No test result files matching d:\a\104\TestResults\clang-results/clang_pytests_ASAN.xml were found. 2020-06-17T09:47:52.8098046Z ##[section]Finishing: [clang] [results] publish pytest results (ASAN) 2020-06-17T09:47:52.8131417Z ##[section]Starting: [clang] [results] publish ctest results (ASAN) 2020-06-17T09:47:52.8255805Z ============================================================================== 2020-06-17T09:47:52.8256128Z Task : Publish Test Results 2020-06-17T09:47:52.8256393Z Description : Publish test results to Azure Pipelines 2020-06-17T09:47:52.8256624Z Version : 2.170.0 2020-06-17T09:47:52.8256839Z Author : Microsoft Corporation 2020-06-17T09:47:52.8257175Z Help : https://docs.microsoft.com/azure/devops/pipelines/tasks/test/publish-test-results 2020-06-17T09:47:52.8257539Z ============================================================================== 2020-06-17T09:47:53.0751658Z ##[warning]No test result files matching d:\a\104\TestResults\clang-results/clang_ctests_ASAN.xml were found. 2020-06-17T09:47:53.1375685Z ##[section]Finishing: [clang] [results] publish ctest results (ASAN) 2020-06-17T09:47:53.1411055Z ##[section]Starting: Checkout eklang@refs/pull/2464/merge to s 2020-06-17T09:47:53.1531646Z ============================================================================== 2020-06-17T09:47:53.1531965Z Task : Get sources 2020-06-17T09:47:53.1532283Z Description : Get sources from a repository. Supports Git, TfsVC, and SVN repositories. 2020-06-17T09:47:53.1532584Z Version : 1.0.0 2020-06-17T09:47:53.1532788Z Author : Microsoft 2020-06-17T09:47:53.1533687Z Help : [More Information](https://go.microsoft.com/fwlink/?LinkId=798199) 2020-06-17T09:47:53.1534064Z ============================================================================== 2020-06-17T09:47:53.5208760Z ##[section]Finishing: Checkout eklang@refs/pull/2464/merge to s 2020-06-17T09:47:53.5271502Z ##[section]Starting: Finalize Job 2020-06-17T09:47:53.5305262Z Cleaning up task key 2020-06-17T09:47:53.5306959Z Start cleaning up orphan processes. 2020-06-17T09:47:53.5385545Z ##[section]Finishing: Finalize Job 2020-06-17T09:47:53.5429155Z ##[section]Finishing: (clang) run ASAN analysis ```
I can confirm this issue is in windows-2019 too.
@maxim-lobanov shall I fill a new issue for that or shall I just rename this one?
``` Pool: Azure Pipelines Image: windows-2019 Agent: Azure Pipelines 3 OS Name: Microsoft Windows Server 2019 Datacenter OS Version: 10.0.17763 N/A Build 17763 Agent Infos =========== Agent.BuildDirectory: d:\a\1 Agent.Id: 84 Agent.JobName: Build VehicleDataProvision.exe ::: [vdp] Agent.MachineName: WIN-GVAE39FMFRN Agent.Name: Azure Pipelines 3 Agent.OS: Windows_NT Agent.OSArchitecture: X64 Agent.WorkFolder: d:\a ```
``` CommandType Name Version Source ----------- ---- ------- ------ Application git.exe 2.27.0.1 C:\Program Files\Git\bin\git.exe Application git-lfs.exe 2.27.0.1 C:\Program Files\Git\cmd\git-lfs.exe git version 2.27.0.windows.1 git-lfs/2.11.0 (GitHub; windows amd64; go 1.14.2; git 48b28d97) ```
``` CommandType Name Version Source ----------- ---- ------- ------ Application git.exe 2.26.2.1 C:\agents\2.170.1\externals\git\cmd\gi... Application git-lfs.exe 2.27.0.1 C:\Program Files\Git\cmd\git-lfs.exe git version 2.26.2.windows.1 git-lfs/2.11.0 (GitHub; windows amd64; go 1.14.2; git 48b28d97) ```
@FrancescElies ,
Thank you for details and patience. Yes, let's use the single issue.
That is pretty strange that Get-Command git
fails because at least one Git should be in PATH.
Could you please add the following lines as a first steps of your pipeline that fails:
- script: echo %PATH%
- pwsh: Get-Content "C:\InstalledSoftware.md"
And share results for failing pipeline.
Also, just to confirm, how do you specify pool in YAML?
pool:
vmImage: 'vs2017-win2016'
Also, just to confirm, how do you specify pool in YAML?
pool: vmImage: 'vs2017-win2016'
- job: myjob
pool:
vmImage: 'windows-2019'
# or
# vmImage: 'vs2017-win2016'
Well the PATH varaible contents look extremly short.
PATH
C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\windows\System32\OpenSSH\;C:\Program Files\Docker;C:\Users\VssAdministrator\AppData\Local\Microsoft\WindowsApps
InstalledSoftware via pwsh: ##[error]The term 'pwsh.exe' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
Since pwsh failed I ran it with powershell:
InstalledSoftware via powershell:
```
2020-06-17T11:56:34.3379351Z ##[section]Starting: [ci debug] InstalledSoftware
2020-06-17T11:56:34.3471910Z ==============================================================================
2020-06-17T11:56:34.3472181Z Task : PowerShell
2020-06-17T11:56:34.3472410Z Description : Run a PowerShell script on Linux, macOS, or Windows
2020-06-17T11:56:34.3472626Z Version : 2.170.1
2020-06-17T11:56:34.3472827Z Author : Microsoft Corporation
2020-06-17T11:56:34.3473113Z Help : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell
2020-06-17T11:56:34.3473422Z ==============================================================================
2020-06-17T11:56:35.0689932Z Generating script.
2020-06-17T11:56:35.2617403Z ========================== Starting Command Output ===========================
2020-06-17T11:56:35.2840315Z ##[command]"C:\windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'd:\a\_temp\8e24882c-0010-472b-ad30-82749dc83a20.ps1'"
2020-06-17T11:56:35.4693948Z # Microsoft Windows Server 2016 Datacenter
2020-06-17T11:56:35.4695205Z - OS Version: 10.0.14393 Build 14393
2020-06-17T11:56:35.4695862Z - Image Version: 20200604.1
2020-06-17T11:56:35.4716204Z
2020-06-17T11:56:35.4718491Z ## Installed Software
2020-06-17T11:56:35.4719043Z ### Language and Runtime
2020-06-17T11:56:35.4720275Z - Java 1.7.0_232
2020-06-17T11:56:35.4721183Z - Java 1.8.0_222 (default)
2020-06-17T11:56:35.4721861Z - Java 11.0.4
2020-06-17T11:56:35.4722506Z - Java 13.0.3
2020-06-17T11:56:35.4722944Z - Rust 1.43.1
2020-06-17T11:56:35.4724742Z - Python 3.7.7
2020-06-17T11:56:35.4725428Z - Ruby 2.5.8p224
2020-06-17T11:56:35.4726026Z - Go 1.14.4
2020-06-17T11:56:35.4726645Z - PHP 7.4.6
2020-06-17T11:56:35.4727074Z - Julia 1.4.2
2020-06-17T11:56:35.4727525Z - Perl 5.30.2
2020-06-17T11:56:35.4728078Z - PowerShell 7.0.1
2020-06-17T11:56:35.4728499Z - Node 12.18.0
2020-06-17T11:56:35.4728873Z
2020-06-17T11:56:35.4729388Z ### Package Management
2020-06-17T11:56:35.4729865Z - Chocolatey 0.10.15
2020-06-17T11:56:35.4730362Z - Vcpkg 2020.02.04
2020-06-17T11:56:35.4730828Z - NPM 6.14.4
2020-06-17T11:56:35.4731188Z - Yarn 1.22.4
2020-06-17T11:56:35.4731645Z - pip 20.1.1 (python 3.7)
2020-06-17T11:56:35.4732089Z - Miniconda 4.6.14
2020-06-17T11:56:35.4732527Z - RubyGems 3.1.4
2020-06-17T11:56:35.4732816Z - Helm 3.2.1
2020-06-17T11:56:35.4733638Z - Composer 1.10.7
2020-06-17T11:56:35.4733849Z
2020-06-17T11:56:35.4734473Z ### Project Management
2020-06-17T11:56:35.4734771Z - Ant 1.10.5
2020-06-17T11:56:35.4735003Z - Maven 3.6.3
2020-06-17T11:56:35.4735222Z - Gradle 6.3
2020-06-17T11:56:35.4735428Z
2020-06-17T11:56:35.4735627Z ### Tools
2020-06-17T11:56:35.4735883Z - Azure CosmosDb Emulator 2.11.0.0
2020-06-17T11:56:35.4736132Z - Bazel 3.2.0
2020-06-17T11:56:35.4736352Z - Bazelisk 1.4.0
2020-06-17T11:56:35.4736588Z - CMake 3.17.3
2020-06-17T11:56:35.4736811Z - Docker 19.03.5
2020-06-17T11:56:35.4737060Z - Docker-compose 1.26.0
2020-06-17T11:56:35.4737300Z - Git 2.27.0
2020-06-17T11:56:35.4737540Z - Git LFS 2.11.0
2020-06-17T11:56:35.4737767Z - InnoSetup 6.0.5
2020-06-17T11:56:35.4737983Z - jq 1.6
2020-06-17T11:56:35.4738213Z - Kubectl 1.18.2
2020-06-17T11:56:35.4738434Z - Kind 0.8.1
2020-06-17T11:56:35.4738656Z - Mingw-w64 8.1.0
2020-06-17T11:56:35.4739089Z - MySQL 5.7.21.0
2020-06-17T11:56:35.4739315Z - Mercurial 5.0
2020-06-17T11:56:35.4739553Z - NSIS 3.5.0.20200106
2020-06-17T11:56:35.4739786Z - OpenSSL 1.1.1
2020-06-17T11:56:35.4740020Z - Packer 1.5.6
2020-06-17T11:56:35.4740234Z - SQLPS 1.0
2020-06-17T11:56:35.4740468Z - SQLServer PS 21.1.18221
2020-06-17T11:56:35.4740730Z - Subversion (SVN) 1.8.17
2020-06-17T11:56:35.4749107Z - ghc 8.10.1
2020-06-17T11:56:35.4749871Z - Cabal 3.2.0.0
2020-06-17T11:56:35.4750425Z - Stack 2.3.1
2020-06-17T11:56:35.4751276Z - WinAppDriver 1.1.1809.18001
2020-06-17T11:56:35.4751465Z - zstd 1.4.0
2020-06-17T11:56:35.4751629Z - VSWhere 2.8.4
2020-06-17T11:56:35.4753999Z - 7zip 19.00
2020-06-17T11:56:35.4754097Z
2020-06-17T11:56:35.4754209Z ### CLI Tools
2020-06-17T11:56:35.4754339Z - Azure CLI 2.7.0
2020-06-17T11:56:35.4755173Z - Azure DevOps CLI extension 0.18.0
2020-06-17T11:56:35.4755341Z - AWS CLI 2.0.18
2020-06-17T11:56:35.4755478Z - AWS SAM CLI 0.52.0
2020-06-17T11:56:35.4755621Z - Alibaba CLI 3.0.26
2020-06-17T11:56:35.4755788Z - Cloud Foundry CLI 6.51.0
2020-06-17T11:56:35.4755944Z - Hub CLI 2.14.2
2020-06-17T11:56:35.4756040Z
2020-06-17T11:56:35.4756167Z ### Browsers and webdrivers
2020-06-17T11:56:35.4756341Z - Google Chrome 83.0.4103.97
2020-06-17T11:56:35.4758794Z - Chrome Driver 83.0.4103.39
2020-06-17T11:56:35.4759916Z - Microsoft Edge 83.0.478.44
2020-06-17T11:56:35.4761395Z - Microsoft Edge Driver 83.0.478.44
2020-06-17T11:56:35.4762870Z - Mozilla Firefox 77.0.1
2020-06-17T11:56:35.4763083Z - Gecko Driver 0.26.0
2020-06-17T11:56:35.4763289Z - IE Driver 3.150.1.0
2020-06-17T11:56:35.4763426Z
2020-06-17T11:56:35.4763547Z ### MSYS2
2020-06-17T11:56:35.4763702Z - Pacman 5.2.1
2020-06-17T11:56:35.4763827Z ```
2020-06-17T11:56:35.4764048Z Location: C:\msys64
2020-06-17T11:56:35.4765008Z
2020-06-17T11:56:35.4765246Z Note: MSYS2 is pre-installed on image but not added to PATH.
2020-06-17T11:56:35.4765760Z ```
2020-06-17T11:56:35.4767378Z ### Cached Tools
2020-06-17T11:56:35.4768198Z #### Boost
2020-06-17T11:56:35.4769062Z | Version | Architecture | Environment Variable |
2020-06-17T11:56:35.4770081Z | ------- | ------------ | -------------------- |
2020-06-17T11:56:35.4770694Z | 1.69.0 | x64, x86 | BOOST_ROOT_1_69_0 |
2020-06-17T11:56:35.4771591Z | 1.72.0 | x64, x86 | BOOST_ROOT_1_72_0 |
2020-06-17T11:56:35.4772683Z ##### Notes:
2020-06-17T11:56:35.4773275Z ```
2020-06-17T11:56:35.4774349Z 1. Environment variable "BOOST_ROOT" is not set by default.
2020-06-17T11:56:35.4775381Z Please make sure you set this variable value to proper value
2020-06-17T11:56:35.4775897Z from table above depending on the Boost version you are using.
2020-06-17T11:56:35.4776761Z 2. If Boost was built using the boost-cmake project or from Boost 1.70.0
2020-06-17T11:56:35.4777842Z on it provides a package configuration file for use with find_package's config mode.
2020-06-17T11:56:35.4778592Z This module looks for the package configuration file called BoostConfig.cmake or boost-config.cmake
2020-06-17T11:56:35.4779633Z and stores the result in CACHE entry "Boost_DIR". If found, the package configuration file
2020-06-17T11:56:35.4780214Z is loaded and this module returns with no further action.
2020-06-17T11:56:35.4780967Z See documentation of the Boost CMake package configuration for details on what it provides.
2020-06-17T11:56:35.4782124Z Set Boost_NO_BOOST_CMAKE to ON, to disable the search for boost-cmake.
2020-06-17T11:56:35.4782665Z Link: https://cmake.org/cmake/help/latest/module/FindBoost.html
2020-06-17T11:56:35.4783373Z ```
2020-06-17T11:56:35.4784207Z
2020-06-17T11:56:35.4785051Z #### Go
2020-06-17T11:56:35.4786023Z | Version | Architecture | Environment Variable |
2020-06-17T11:56:35.4786863Z | ------- | ------------ | -------------------- |
2020-06-17T11:56:35.4787820Z | 1.9.7 | x64 | GOROOT_1_9_X64 |
2020-06-17T11:56:35.4788532Z | 1.10.8 | x64 | GOROOT_1_10_X64 |
2020-06-17T11:56:35.4789519Z | 1.11.13 | x64 | GOROOT_1_11_X64 |
2020-06-17T11:56:35.4790445Z | 1.12.17 | x64 | GOROOT_1_12_X64 |
2020-06-17T11:56:35.4791284Z | 1.13.12 | x64 | GOROOT_1_13_X64 |
2020-06-17T11:56:35.4792973Z | 1.14.4 (Default) | x64 | GOROOT_1_14_X64 |
2020-06-17T11:56:35.4793195Z
2020-06-17T11:56:35.4793576Z
2020-06-17T11:56:35.4794477Z #### Node
2020-06-17T11:56:35.4795318Z | Version | Architecture |
2020-06-17T11:56:35.4795893Z | ------- | ------------ |
2020-06-17T11:56:35.4796863Z | 8.17.0 | x64 |
2020-06-17T11:56:35.4797595Z | 10.21.0 | x64 |
2020-06-17T11:56:35.4798491Z | 12.18.0 | x64 |
2020-06-17T11:56:35.4799275Z | 14.4.0 | x64 |
2020-06-17T11:56:35.4800230Z
2020-06-17T11:56:35.4800686Z
2020-06-17T11:56:35.4801858Z #### Python
2020-06-17T11:56:35.4802870Z | Version | Architecture |
2020-06-17T11:56:35.4803432Z | ------- | ------------ |
2020-06-17T11:56:35.4804381Z | 2.7.18 | x64, x86 |
2020-06-17T11:56:35.4805116Z | 3.5.4 | x64, x86 |
2020-06-17T11:56:35.4805909Z | 3.6.8 | x64, x86 |
2020-06-17T11:56:35.4806669Z | 3.7.7 (Default) | x64, x86 |
2020-06-17T11:56:35.4807493Z | 3.8.3 | x64, x86 |
2020-06-17T11:56:35.4808169Z
2020-06-17T11:56:35.4808889Z
2020-06-17T11:56:35.4809840Z #### Ruby
2020-06-17T11:56:35.4810510Z | Version | Architecture |
2020-06-17T11:56:35.4811368Z | ------- | ------------ |
2020-06-17T11:56:35.4812134Z | 2.4.10 | x64 |
2020-06-17T11:56:35.4813003Z | 2.5.8 (Default) | x64 |
2020-06-17T11:56:35.4813737Z | 2.6.6 | x64 |
2020-06-17T11:56:35.4814516Z | 2.7.1 | x64 |
2020-06-17T11:56:35.4815013Z
2020-06-17T11:56:35.4815937Z
2020-06-17T11:56:35.4816687Z #### PyPy
2020-06-17T11:56:35.4817607Z | Python Version | Architecture | PyPy Version |
2020-06-17T11:56:35.4818308Z | -------------- | ------------ | ------------ |
2020-06-17T11:56:35.4819228Z | 2.7.13 | x86 | PyPy 7.3.1 with MSC v.1912 32 bit |
2020-06-17T11:56:35.4820106Z | 3.6.9 | x86 | PyPy 7.3.1 with MSC v.1912 32 bit |
2020-06-17T11:56:35.4820551Z
2020-06-17T11:56:35.5079473Z
2020-06-17T11:56:35.5080826Z
2020-06-17T11:56:35.5082169Z ### Databases
2020-06-17T11:56:35.5083126Z #### PostgreSQL
2020-06-17T11:56:35.5084466Z | Version | UserName | Password | Path | ServiceName | ServiceStatus | ServiceStartType |
2020-06-17T11:56:35.5085372Z | ------- | -------- | -------- | ------------------------------ | ----------------- | ------------- | ---------------- |
2020-06-17T11:56:35.5086250Z | 12.3 | postgres | root | C:\Program Files\PostgreSQL\12 | postgresql-x64-12 | Stopped | Disabled |
2020-06-17T11:56:35.5086877Z
2020-06-17T11:56:35.5087984Z
2020-06-17T11:56:35.5088784Z #### MongoDB
2020-06-17T11:56:35.5089871Z | Version | ServiceName | ServiceStatus | ServiceStartType |
2020-06-17T11:56:35.5090595Z | ------- | ----------- | ------------- | ---------------- |
2020-06-17T11:56:35.5091607Z | 4.2.7.0 | MongoDB | Running | Automatic |
2020-06-17T11:56:35.5092208Z
2020-06-17T11:56:35.5093322Z
2020-06-17T11:56:35.5094007Z
2020-06-17T11:56:35.5094972Z ### Visual Studio Enterprise 2017
2020-06-17T11:56:35.5095838Z | Name | Version | Path |
2020-06-17T11:56:35.5096801Z | ----------------------------- | --------------- | -------------------------------------------------------------- |
2020-06-17T11:56:35.5097927Z | Visual Studio Enterprise 2017 | 15.9.28307.1146 | C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise |
2020-06-17T11:56:35.5098311Z
2020-06-17T11:56:35.5099614Z #### Workloads, components and extensions:
2020-06-17T11:56:35.5100099Z
2020-06-17T11:56:35.5101478Z | Package | version |
2020-06-17T11:56:35.5102533Z | ------------------------------------------------------------------------- | ---------------- |
2020-06-17T11:56:35.5103488Z | Component.Anaconda3.x64 | 5.2.0 |
2020-06-17T11:56:35.5104323Z | Component.Android.NDK.R12B | 12.1.10 |
2020-06-17T11:56:35.5105294Z | Component.Android.NDK.R15C | 15.2.1 |
2020-06-17T11:56:35.5105985Z | Component.Android.SDK19.Private | 15.9.28107.0 |
2020-06-17T11:56:35.5106877Z | Component.Android.SDK21.Private | 15.9.28016.0 |
2020-06-17T11:56:35.5107541Z | Component.Android.SDK22.Private | 15.9.28016.0 |
2020-06-17T11:56:35.5108325Z | Component.Android.SDK23 | 15.9.28107.0 |
2020-06-17T11:56:35.5109317Z | Component.Android.SDK23.Private | 15.9.28016.0 |
2020-06-17T11:56:35.5110105Z | Component.Android.SDK25.Private | 15.9.28016.0 |
2020-06-17T11:56:35.5111085Z | Component.Android.SDK27 | 15.9.28016.0 |
2020-06-17T11:56:35.5111819Z | Component.Ant | 1.9.3.8 |
2020-06-17T11:56:35.5112648Z | Component.CordovaToolset.6.3.1 | 15.7.27625.0 |
2020-06-17T11:56:35.5113328Z | Component.Dotfuscator | 15.0.26208.0 |
2020-06-17T11:56:35.5113941Z | Component.Google.Android.Emulator.API27 | 15.9.28307.421 |
2020-06-17T11:56:35.5115222Z | Component.HAXM | 15.9.28307.421 |
2020-06-17T11:56:35.5116072Z | Component.Linux.CMake | 15.9.28307.102 |
2020-06-17T11:56:35.5116720Z | Component.MDD.Android | 15.0.26606.0 |
2020-06-17T11:56:35.5117656Z | Component.MDD.Linux | 15.6.27406.0 |
2020-06-17T11:56:35.5118534Z | Component.Microsoft.VisualStudio.RazorExtension | 15.0.26720.2 |
2020-06-17T11:56:35.5119123Z | Component.Microsoft.VisualStudio.Tools.Applications | 15.0.27520.3 |
2020-06-17T11:56:35.5120174Z | Component.Microsoft.VisualStudio.Web.AzureFunctions | 15.7.27617.1 |
2020-06-17T11:56:35.5120905Z | Component.Microsoft.Web.LibraryManager | 15.8.27705.0 |
2020-06-17T11:56:35.5122011Z | Component.Microsoft.Windows.DriverKit | 10.0.17740.0 |
2020-06-17T11:56:35.5122496Z | Component.OpenJDK | 15.9.28307.443 |
2020-06-17T11:56:35.5123463Z | Component.Redgate.ReadyRoll | 1.17.18155.10346 |
2020-06-17T11:56:35.5123884Z | Component.Redgate.SQLPrompt.VsPackage | 9.2.0.5601 |
2020-06-17T11:56:35.5124289Z | Component.Redgate.SQLSearch.VSExtension | 3.1.7.2062 |
2020-06-17T11:56:35.5125084Z | Component.UnityEngine.x64 | 15.9.28307.616 |
2020-06-17T11:56:35.5126310Z | Component.Unreal | 15.8.27729.1 |
2020-06-17T11:56:35.5227113Z | Component.Unreal.Android | 15.9.28307.341 |
2020-06-17T11:56:35.5228325Z | Component.WixToolset.VisualStudioExtension.Dev15 | 0.9.21.62588 |
2020-06-17T11:56:35.5228704Z | Component.Xamarin | 15.8.27906.1 |
2020-06-17T11:56:35.5229111Z | Component.Xamarin.Profiler | 15.0.27005.2 |
2020-06-17T11:56:35.5229467Z | Component.Xamarin.RemotedSimulator | 15.6.27323.2 |
2020-06-17T11:56:35.5229809Z | Microsoft.Component.Azure.DataLake.Tools | 15.9.28107.0 |
2020-06-17T11:56:35.5230246Z | Microsoft.Component.Blend.SDK.WPF | 15.6.27406.0 |
2020-06-17T11:56:35.5231197Z | Microsoft.Component.ClickOnce | 15.8.27825.0 |
2020-06-17T11:56:35.5231707Z | Microsoft.Component.CookiecutterTools | 15.0.26621.2 |
2020-06-17T11:56:35.5232046Z | Microsoft.Component.MSBuild | 15.7.27520.0 |
2020-06-17T11:56:35.5232863Z | Microsoft.Component.NetFX.Core.Runtime | 15.0.26208.0 |
2020-06-17T11:56:35.5233237Z | Microsoft.Component.NetFX.Native | 15.0.26208.0 |
2020-06-17T11:56:35.5234057Z | Microsoft.Component.PythonTools | 15.0.26823.1 |
2020-06-17T11:56:35.5234470Z | Microsoft.Component.PythonTools.UWP | 15.0.26606.0 |
2020-06-17T11:56:35.5234849Z | Microsoft.Component.PythonTools.Web | 15.9.28107.0 |
2020-06-17T11:56:35.5235645Z | Microsoft.Component.VC.Runtime.OSSupport | 15.6.27406.0 |
2020-06-17T11:56:35.5236997Z | Microsoft.Component.VC.Runtime.UCRTSDK | 15.6.27309.0 |
2020-06-17T11:56:35.5237940Z | Microsoft.ComponentGroup.Blend | 15.6.27406.0 |
2020-06-17T11:56:35.5238754Z | Microsoft.Net.Component.3.5.DeveloperTools | 15.6.27406.0 |
2020-06-17T11:56:35.5239738Z | Microsoft.Net.Component.4.5.1.TargetingPack | 15.6.27406.0 |
2020-06-17T11:56:35.5240595Z | Microsoft.Net.Component.4.5.2.TargetingPack | 15.6.27406.0 |
2020-06-17T11:56:35.5241291Z | Microsoft.Net.Component.4.5.TargetingPack | 15.6.27406.0 |
2020-06-17T11:56:35.5242203Z | Microsoft.Net.Component.4.6.1.SDK | 15.6.27406.0 |
2020-06-17T11:56:35.5243097Z | Microsoft.Net.Component.4.6.1.TargetingPack | 15.6.27406.0 |
2020-06-17T11:56:35.5243768Z | Microsoft.Net.Component.4.6.2.SDK | 15.6.27406.0 |
2020-06-17T11:56:35.5244750Z | Microsoft.Net.Component.4.6.2.TargetingPack | 15.6.27406.0 |
2020-06-17T11:56:35.5245515Z | Microsoft.Net.Component.4.6.TargetingPack | 15.6.27406.0 |
2020-06-17T11:56:35.5246480Z | Microsoft.Net.Component.4.7.1.SDK | 15.6.27406.0 |
2020-06-17T11:56:35.5247073Z | Microsoft.Net.Component.4.7.1.TargetingPack | 15.6.27406.0 |
2020-06-17T11:56:35.5247793Z | Microsoft.Net.Component.4.7.2.SDK | 15.8.27825.0 |
2020-06-17T11:56:35.5248595Z | Microsoft.Net.Component.4.7.2.TargetingPack | 15.8.27825.0 |
2020-06-17T11:56:35.5249703Z | Microsoft.Net.Component.4.7.SDK | 15.6.27406.0 |
2020-06-17T11:56:35.5250180Z | Microsoft.Net.Component.4.7.TargetingPack | 15.6.27406.0 |
2020-06-17T11:56:35.5251050Z | Microsoft.Net.Component.4.TargetingPack | 15.6.27406.0 |
2020-06-17T11:56:35.5251780Z | Microsoft.Net.ComponentGroup.4.6.2.DeveloperTools | 15.6.27406.0 |
2020-06-17T11:56:35.5252329Z | Microsoft.Net.ComponentGroup.4.7.1.DeveloperTools | 15.6.27406.0 |
2020-06-17T11:56:35.5253412Z | Microsoft.Net.ComponentGroup.4.7.2.DeveloperTools | 15.8.27825.0 |
2020-06-17T11:56:35.5253940Z | Microsoft.Net.ComponentGroup.4.7.DeveloperTools | 15.6.27406.0 |
2020-06-17T11:56:35.5254778Z | Microsoft.Net.ComponentGroup.DevelopmentPrerequisites | 15.8.27825.0 |
2020-06-17T11:56:35.5255478Z | Microsoft.Net.ComponentGroup.TargetingPacks.Common | 15.6.27406.0 |
2020-06-17T11:56:35.5256663Z | Microsoft.Net.Core.Component.SDK | 15.6.27406.0 |
2020-06-17T11:56:35.5354491Z | Microsoft.Net.Core.Component.SDK.1x | 15.6.27406.0 |
2020-06-17T11:56:35.5355248Z | Microsoft.Net.Core.Component.SDK.2.1 | 15.8.27924.0 |
2020-06-17T11:56:35.5356464Z | Microsoft.NetCore.1x.ComponentGroup.Web | 15.6.27406.0 |
2020-06-17T11:56:35.5357482Z | Microsoft.NetCore.ComponentGroup.DevelopmentTools | 15.8.27729.1 |
2020-06-17T11:56:35.5358357Z | Microsoft.NetCore.ComponentGroup.DevelopmentTools.2.1 | 15.8.27924.0 |
2020-06-17T11:56:35.5359263Z | Microsoft.NetCore.ComponentGroup.Web.2.1 | 15.8.27924.0 |
2020-06-17T11:56:35.5360115Z | Microsoft.VisualStudio.Component.AppInsights.Tools | 15.8.27825.0 |
2020-06-17T11:56:35.5360801Z | Microsoft.VisualStudio.Component.AspNet45 | 15.7.27625.0 |
2020-06-17T11:56:35.5361703Z | Microsoft.VisualStudio.Component.Azure.AuthoringTools | 15.9.28307.421 |
2020-06-17T11:56:35.5362755Z | Microsoft.VisualStudio.Component.Azure.ClientLibs | 15.0.26208.0 |
2020-06-17T11:56:35.5363289Z | Microsoft.VisualStudio.Component.Azure.Compute.Emulator | 15.9.28307.421 |
2020-06-17T11:56:35.5364161Z | Microsoft.VisualStudio.Component.Azure.MobileAppsSdk | 15.7.27625.0 |
2020-06-17T11:56:35.5364855Z | Microsoft.VisualStudio.Component.Azure.ResourceManager.Tools | 15.9.28107.0 |
2020-06-17T11:56:35.5365926Z | Microsoft.VisualStudio.Component.Azure.ServiceFabric.Tools | 15.8.27825.0 |
2020-06-17T11:56:35.5366382Z | Microsoft.VisualStudio.Component.Azure.Storage.AzCopy | 15.0.26906.1 |
2020-06-17T11:56:35.5367237Z | Microsoft.VisualStudio.Component.Azure.Storage.Emulator | 15.9.28125.51 |
2020-06-17T11:56:35.5368048Z | Microsoft.VisualStudio.Component.Azure.Waverton | 15.9.28107.0 |
2020-06-17T11:56:35.5369243Z | Microsoft.VisualStudio.Component.Azure.Waverton.BuildTools | 15.7.27617.1 |
2020-06-17T11:56:35.5370129Z | Microsoft.VisualStudio.Component.ClassDesigner | 15.0.26208.0 |
2020-06-17T11:56:35.5370644Z | Microsoft.VisualStudio.Component.CloudExplorer | 15.9.28230.55 |
2020-06-17T11:56:35.5371114Z | Microsoft.VisualStudio.Component.CodeClone | 15.0.26208.0 |
2020-06-17T11:56:35.5371864Z | Microsoft.VisualStudio.Component.CodeMap | 15.0.26208.0 |
2020-06-17T11:56:35.5372561Z | Microsoft.VisualStudio.Component.Common.Azure.Tools | 15.9.28107.0 |
2020-06-17T11:56:35.5373542Z | Microsoft.VisualStudio.Component.Cordova | 15.0.26606.0 |
2020-06-17T11:56:35.5374332Z | Microsoft.VisualStudio.Component.CoreEditor | 15.8.27729.1 |
2020-06-17T11:56:35.5375301Z | Microsoft.VisualStudio.Component.Debugger.JustInTime | 15.0.27005.2 |
2020-06-17T11:56:35.5376276Z | Microsoft.VisualStudio.Component.Debugger.Snapshot | 15.8.28010.0 |
2020-06-17T11:56:35.5376815Z | Microsoft.VisualStudio.Component.DependencyValidation.Enterprise | 15.0.26208.0 |
2020-06-17T11:56:35.5377759Z | Microsoft.VisualStudio.Component.DiagnosticTools | 15.8.27729.1 |
2020-06-17T11:56:35.5378815Z | Microsoft.VisualStudio.Component.DockerTools | 15.8.27906.1 |
2020-06-17T11:56:35.5379444Z | Microsoft.VisualStudio.Component.DockerTools.BuildTools | 15.7.27617.1 |
2020-06-17T11:56:35.5380465Z | Microsoft.VisualStudio.Component.DslTools | 15.0.27005.2 |
2020-06-17T11:56:35.5381104Z | Microsoft.VisualStudio.Component.EntityFramework | 15.6.27406.0 |
2020-06-17T11:56:35.5381964Z | Microsoft.VisualStudio.Component.FSharp | 15.8.27825.0 |
2020-06-17T11:56:35.5382658Z | Microsoft.VisualStudio.Component.FSharp.Desktop | 15.8.27825.0 |
2020-06-17T11:56:35.5383623Z | Microsoft.VisualStudio.Component.FSharp.WebTemplates | 15.9.28307.421 |
2020-06-17T11:56:35.5384331Z | Microsoft.VisualStudio.Component.GraphDocument | 15.0.27005.2 |
2020-06-17T11:56:35.5385110Z | Microsoft.VisualStudio.Component.Graphics | 15.6.27406.0 |
2020-06-17T11:56:35.5385786Z | Microsoft.VisualStudio.Component.Graphics.Tools | 15.6.27406.0 |
2020-06-17T11:56:35.5386447Z | Microsoft.VisualStudio.Component.Graphics.Win81 | 15.6.27406.0 |
2020-06-17T11:56:35.5387071Z | Microsoft.VisualStudio.Component.IISExpress | 15.0.26208.0 |
2020-06-17T11:56:35.5388058Z | Microsoft.VisualStudio.Component.IntelliTrace.FrontEnd | 15.8.27729.1 |
2020-06-17T11:56:35.5700684Z | Microsoft.VisualStudio.Component.JavaScript.Diagnostics | 15.8.27729.1 |
2020-06-17T11:56:35.5701323Z | Microsoft.VisualStudio.Component.JavaScript.ProjectSystem | 15.0.26606.0 |
2020-06-17T11:56:35.5702379Z | Microsoft.VisualStudio.Component.JavaScript.TypeScript | 15.9.28125.51 |
2020-06-17T11:56:35.5704088Z | Microsoft.VisualStudio.Component.LinqToSql | 15.6.27406.0 |
2020-06-17T11:56:35.5704830Z | Microsoft.VisualStudio.Component.LiveUnitTesting | 15.0.26720.2 |
2020-06-17T11:56:35.5705986Z | Microsoft.VisualStudio.Component.ManagedDesktop.Core | 15.8.27729.1 |
2020-06-17T11:56:35.5706613Z | Microsoft.VisualStudio.Component.ManagedDesktop.Prerequisites | 15.7.27625.0 |
2020-06-17T11:56:35.5707539Z | Microsoft.VisualStudio.Component.Merq | 15.8.27924.0 |
2020-06-17T11:56:35.5708319Z | Microsoft.VisualStudio.Component.MonoDebugger | 15.0.26720.2 |
2020-06-17T11:56:35.5709612Z | Microsoft.VisualStudio.Component.Node.Build | 15.8.27825.0 |
2020-06-17T11:56:35.5710609Z | Microsoft.VisualStudio.Component.Node.Tools | 15.8.27825.0 |
2020-06-17T11:56:35.5711501Z | Microsoft.VisualStudio.Component.NuGet | 15.9.28016.0 |
2020-06-17T11:56:35.5712224Z | Microsoft.VisualStudio.Component.NuGet.BuildTools | 15.9.28016.0 |
2020-06-17T11:56:35.5713387Z | Microsoft.VisualStudio.Component.PortableLibrary | 15.6.27309.0 |
2020-06-17T11:56:35.5714210Z | Microsoft.VisualStudio.Component.R.Open | 15.6.27406.0 |
2020-06-17T11:56:35.5714998Z | Microsoft.VisualStudio.Component.RHost | 15.6.27406.0 |
2020-06-17T11:56:35.5715724Z | Microsoft.VisualStudio.Component.Roslyn.Compiler | 15.6.27309.0 |
2020-06-17T11:56:35.5716843Z | Microsoft.VisualStudio.Component.Roslyn.LanguageServices | 15.8.27729.1 |
2020-06-17T11:56:35.5717622Z | Microsoft.VisualStudio.Component.RTools | 15.0.26919.1 |
2020-06-17T11:56:35.5718366Z | Microsoft.VisualStudio.Component.Sharepoint.Tools | 15.8.27924.0 |
2020-06-17T11:56:35.5719453Z | Microsoft.VisualStudio.Component.SQL.ADAL | 15.6.27406.0 |
2020-06-17T11:56:35.5720572Z | Microsoft.VisualStudio.Component.SQL.CLR | 15.0.26208.0 |
2020-06-17T11:56:35.5721319Z | Microsoft.VisualStudio.Component.SQL.CMDUtils | 15.0.26208.0 |
2020-06-17T11:56:35.5722391Z | Microsoft.VisualStudio.Component.SQL.DataSources | 15.0.26621.2 |
2020-06-17T11:56:35.5723445Z | Microsoft.VisualStudio.Component.SQL.LocalDB.Runtime | 15.7.27617.1 |
2020-06-17T11:56:35.5724243Z | Microsoft.VisualStudio.Component.SQL.NCLI | 15.0.26208.0 |
2020-06-17T11:56:35.5724940Z | Microsoft.VisualStudio.Component.SQL.SSDT | 15.9.28107.0 |
2020-06-17T11:56:35.5726077Z | Microsoft.VisualStudio.Component.Static.Analysis.Tools | 15.0.26208.0 |
2020-06-17T11:56:35.5726757Z | Microsoft.VisualStudio.Component.TeamOffice | 15.7.27625.0 |
2020-06-17T11:56:35.5727723Z | Microsoft.VisualStudio.Component.TestTools.CodedUITest | 15.0.26606.0 |
2020-06-17T11:56:35.5728433Z | Microsoft.VisualStudio.Component.TestTools.Core | 15.7.27520.0 |
2020-06-17T11:56:35.5729583Z | Microsoft.VisualStudio.Component.TestTools.WebLoadTest | 15.8.27729.1 |
2020-06-17T11:56:35.5730624Z | Microsoft.VisualStudio.Component.TextTemplating | 15.0.26208.0 |
2020-06-17T11:56:35.5731262Z | Microsoft.VisualStudio.Component.TypeScript.2.0 | 15.8.27729.1 |
2020-06-17T11:56:35.5732336Z | Microsoft.VisualStudio.Component.TypeScript.2.1 | 15.8.27729.1 |
2020-06-17T11:56:35.5733262Z | Microsoft.VisualStudio.Component.TypeScript.2.2 | 15.8.27729.1 |
2020-06-17T11:56:35.5734375Z | Microsoft.VisualStudio.Component.TypeScript.2.3 | 15.8.27729.1 |
2020-06-17T11:56:35.5735009Z | Microsoft.VisualStudio.Component.TypeScript.3.1 | 15.0.28218.60 |
2020-06-17T11:56:35.5735970Z | Microsoft.VisualStudio.Component.Unity | 15.7.27617.1 |
2020-06-17T11:56:35.5737125Z | Microsoft.VisualStudio.Component.UWP.Support | 15.9.28119.51 |
2020-06-17T11:56:35.5737752Z | Microsoft.VisualStudio.Component.UWP.VC.ARM64 | 15.0.28125.51 |
2020-06-17T11:56:35.5738783Z | Microsoft.VisualStudio.Component.VC.140 | 15.7.27617.1 |
2020-06-17T11:56:35.5847425Z | Microsoft.VisualStudio.Component.VC.ATL | 15.7.27625.0 |
2020-06-17T11:56:35.5848279Z | Microsoft.VisualStudio.Component.VC.ATL.ARM | 15.7.27625.0 |
2020-06-17T11:56:35.5849909Z | Microsoft.VisualStudio.Component.VC.ATL.ARM.Spectre | 15.7.27625.0 |
2020-06-17T11:56:35.5873171Z | Microsoft.VisualStudio.Component.VC.ATL.ARM64 | 15.7.27625.0 |
2020-06-17T11:56:35.5873713Z | Microsoft.VisualStudio.Component.VC.ATL.ARM64.Spectre | 15.7.27625.0 |
2020-06-17T11:56:35.5874147Z | Microsoft.VisualStudio.Component.VC.ATL.Spectre | 15.7.27625.0 |
2020-06-17T11:56:35.5874555Z | Microsoft.VisualStudio.Component.VC.ATLMFC | 15.7.27625.0 |
2020-06-17T11:56:35.5874900Z | Microsoft.VisualStudio.Component.VC.ATLMFC.Spectre | 15.7.27625.0 |
2020-06-17T11:56:35.5875249Z | Microsoft.VisualStudio.Component.VC.ClangC2 | 15.7.27520.0 |
2020-06-17T11:56:35.5875636Z | Microsoft.VisualStudio.Component.VC.CLI.Support | 15.6.27309.0 |
2020-06-17T11:56:35.5875978Z | Microsoft.VisualStudio.Component.VC.CMake.Project | 15.9.28307.102 |
2020-06-17T11:56:35.5876325Z | Microsoft.VisualStudio.Component.VC.CoreIde | 15.6.27406.0 |
2020-06-17T11:56:35.5876847Z | Microsoft.VisualStudio.Component.VC.DiagnosticTools | 15.0.26823.1 |
2020-06-17T11:56:35.5877193Z | Microsoft.VisualStudio.Component.VC.Modules.x86.x64 | 15.6.27309.0 |
2020-06-17T11:56:35.5877535Z | Microsoft.VisualStudio.Component.VC.Redist.14.Latest | 15.6.27406.0 |
2020-06-17T11:56:35.5877921Z | Microsoft.VisualStudio.Component.VC.Runtimes.ARM.Spectre | 15.9.28230.55 |
2020-06-17T11:56:35.5878269Z | Microsoft.VisualStudio.Component.VC.Runtimes.ARM64.Spectre | 15.9.28230.55 |
2020-06-17T11:56:35.5878613Z | Microsoft.VisualStudio.Component.VC.Runtimes.x86.x64.Spectre | 15.9.28230.55 |
2020-06-17T11:56:35.5878952Z | Microsoft.VisualStudio.Component.VC.TestAdapterForBoostTest | 15.9.28307.616 |
2020-06-17T11:56:35.5879362Z | Microsoft.VisualStudio.Component.VC.TestAdapterForGoogleTest | 15.8.27906.1 |
2020-06-17T11:56:35.5879706Z | Microsoft.VisualStudio.Component.VC.Tools.ARM | 15.8.27825.0 |
2020-06-17T11:56:35.5880092Z | Microsoft.VisualStudio.Component.VC.Tools.ARM64 | 15.9.28230.55 |
2020-06-17T11:56:35.5880476Z | Microsoft.VisualStudio.Component.VC.Tools.x86.x64 | 15.9.28230.55 |
2020-06-17T11:56:35.5880816Z | Microsoft.VisualStudio.Component.VisualStudioData | 15.6.27406.0 |
2020-06-17T11:56:35.5881158Z | Microsoft.VisualStudio.Component.VSSDK | 15.8.27729.1 |
2020-06-17T11:56:35.5881546Z | Microsoft.VisualStudio.Component.Wcf.Tooling | 15.8.27924.0 |
2020-06-17T11:56:35.5881883Z | Microsoft.VisualStudio.Component.Web | 15.8.27825.0 |
2020-06-17T11:56:35.5882226Z | Microsoft.VisualStudio.Component.WebDeploy | 15.8.27729.1 |
2020-06-17T11:56:35.5882630Z | Microsoft.VisualStudio.Component.Windows10SDK | 15.6.27406.0 |
2020-06-17T11:56:35.5882971Z | Microsoft.VisualStudio.Component.Windows10SDK.10240 | 15.6.27406.0 |
2020-06-17T11:56:35.5883309Z | Microsoft.VisualStudio.Component.Windows10SDK.10586 | 15.6.27406.0 |
2020-06-17T11:56:35.5883691Z | Microsoft.VisualStudio.Component.Windows10SDK.14393 | 15.6.27406.0 |
2020-06-17T11:56:35.5884097Z | Microsoft.VisualStudio.Component.Windows10SDK.15063.Desktop | 15.6.27406.0 |
2020-06-17T11:56:35.5884436Z | Microsoft.VisualStudio.Component.Windows10SDK.15063.UWP | 15.6.27406.0 |
2020-06-17T11:56:35.5884776Z | Microsoft.VisualStudio.Component.Windows10SDK.15063.UWP.Native | 15.6.27406.0 |
2020-06-17T11:56:35.5885162Z | Microsoft.VisualStudio.Component.Windows10SDK.16299.Desktop | 15.6.27406.0 |
2020-06-17T11:56:35.5885509Z | Microsoft.VisualStudio.Component.Windows10SDK.16299.Desktop.arm | 15.6.27406.0 |
2020-06-17T11:56:35.5885847Z | Microsoft.VisualStudio.Component.Windows10SDK.16299.UWP | 15.6.27406.0 |
2020-06-17T11:56:35.5886240Z | Microsoft.VisualStudio.Component.Windows10SDK.16299.UWP.Native | 15.6.27406.0 |
2020-06-17T11:56:35.5886582Z | Microsoft.VisualStudio.Component.Windows10SDK.17134 | 15.9.28307.102 |
2020-06-17T11:56:35.5886924Z | Microsoft.VisualStudio.Component.Windows10SDK.17763 | 15.9.28307.102 |
2020-06-17T11:56:35.5887308Z | Microsoft.VisualStudio.Component.Windows81SDK | 15.6.27406.0 |
2020-06-17T11:56:35.5969518Z | Microsoft.VisualStudio.Component.WinXP | 15.8.27924.0 |
2020-06-17T11:56:35.6108807Z | Microsoft.VisualStudio.Component.Workflow | 15.8.27825.0 |
2020-06-17T11:56:35.6109299Z | Microsoft.VisualStudio.ComponentGroup.ArchitectureTools.Managed | 15.0.26208.0 |
2020-06-17T11:56:35.6110381Z | Microsoft.VisualStudio.ComponentGroup.ArchitectureTools.Native | 15.0.26208.0 |
2020-06-17T11:56:35.6110816Z | Microsoft.VisualStudio.ComponentGroup.Azure.CloudServices | 15.0.26504.0 |
2020-06-17T11:56:35.6111242Z | Microsoft.VisualStudio.ComponentGroup.Azure.Prerequisites | 15.9.28107.0 |
2020-06-17T11:56:35.6111687Z | Microsoft.VisualStudio.ComponentGroup.Azure.ResourceManager.Tools | 15.0.27005.2 |
2020-06-17T11:56:35.6112119Z | Microsoft.VisualStudio.ComponentGroup.AzureFunctions | 15.7.27617.1 |
2020-06-17T11:56:35.6112545Z | Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core | 15.8.27729.1 |
2020-06-17T11:56:35.6112979Z | Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Win81 | 15.6.27406.0 |
2020-06-17T11:56:35.6113409Z | Microsoft.VisualStudio.ComponentGroup.NativeDesktop.WinXP | 15.8.27705.0 |
2020-06-17T11:56:35.6113889Z | Microsoft.VisualStudio.ComponentGroup.UWP.Cordova | 15.9.28307.102 |
2020-06-17T11:56:35.6114332Z | Microsoft.VisualStudio.ComponentGroup.UWP.NetCoreAndStandard | 15.8.27906.1 |
2020-06-17T11:56:35.6114762Z | Microsoft.VisualStudio.ComponentGroup.UWP.VC | 15.9.28307.102 |
2020-06-17T11:56:35.6115196Z | Microsoft.VisualStudio.ComponentGroup.UWP.Xamarin | 15.9.28307.102 |
2020-06-17T11:56:35.6115634Z | Microsoft.VisualStudio.ComponentGroup.VisualStudioExtension.Prerequisites | 15.7.27625.0 |
2020-06-17T11:56:35.6116064Z | Microsoft.VisualStudio.ComponentGroup.Web | 15.9.28219.51 |
2020-06-17T11:56:35.6116495Z | Microsoft.VisualStudio.ComponentGroup.Web.CloudTools | 15.8.27729.1 |
2020-06-17T11:56:35.6116929Z | Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions | 15.8.27825.0 |
2020-06-17T11:56:35.6117359Z | Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.TemplateEngine | 15.8.27729.1 |
2020-06-17T11:56:35.6117793Z | Microsoft.VisualStudio.Web.Mvc4.ComponentGroup | 15.6.27406.0 |
2020-06-17T11:56:35.6118409Z | Microsoft.VisualStudio.Workload.Azure | 15.8.27906.1 |
2020-06-17T11:56:35.6119092Z | Microsoft.VisualStudio.Workload.CoreEditor | 15.0.27205.0 |
2020-06-17T11:56:35.6119704Z | Microsoft.VisualStudio.Workload.Data | 15.6.27309.0 |
2020-06-17T11:56:35.6120251Z | Microsoft.VisualStudio.Workload.DataScience | 15.9.28307.421 |
2020-06-17T11:56:35.6120779Z | Microsoft.VisualStudio.Workload.ManagedDesktop | 15.9.28307.1062 |
2020-06-17T11:56:35.6121314Z | Microsoft.VisualStudio.Workload.ManagedGame | 15.0.27005.2 |
2020-06-17T11:56:35.6121711Z | Microsoft.VisualStudio.Workload.NativeCrossPlat | 15.0.27205.0 |
2020-06-17T11:56:35.6122083Z | Microsoft.VisualStudio.Workload.NativeDesktop | 15.9.28307.102 |
2020-06-17T11:56:35.6122424Z | Microsoft.VisualStudio.Workload.NativeGame | 15.9.28307.102 |
2020-06-17T11:56:35.6122766Z | Microsoft.VisualStudio.Workload.NativeMobile | 15.9.28107.0 |
2020-06-17T11:56:35.6123111Z | Microsoft.VisualStudio.Workload.NetCoreTools | 15.8.27906.1 |
2020-06-17T11:56:35.6123455Z | Microsoft.VisualStudio.Workload.NetCrossPlat | 15.9.28107.0 |
2020-06-17T11:56:35.6123827Z | Microsoft.VisualStudio.Workload.NetWeb | 15.8.27906.1 |
2020-06-17T11:56:35.6124172Z | Microsoft.VisualStudio.Workload.Node | 15.9.28107.0 |
2020-06-17T11:56:35.6124577Z | Microsoft.VisualStudio.Workload.Office | 15.8.27924.0 |
2020-06-17T11:56:35.6124920Z | Microsoft.VisualStudio.Workload.Python | 15.8.27825.0 |
2020-06-17T11:56:35.6125262Z | Microsoft.VisualStudio.Workload.Universal | 15.9.28307.102 |
2020-06-17T11:56:35.6125621Z | Microsoft.VisualStudio.Workload.VisualStudioExtension | 15.7.27625.0 |
2020-06-17T11:56:35.6125959Z | Microsoft.VisualStudio.Workload.WebCrossPlat | 15.9.28307.341 |
2020-06-17T11:56:35.6126295Z | SSDT Microsoft Analysis Services Projects | 2.9.6 |
2020-06-17T11:56:35.6126646Z | SSDT SQL Server Integration Services Projects | 2.6 |
2020-06-17T11:56:35.6126988Z | SSDT Microsoft Reporting Services Projects | 2.6.3 |
2020-06-17T11:56:35.6127333Z | Windows Driver Kit | 0.9.21.62588 |
2020-06-17T11:56:35.6127678Z | Windows Driver Kit Visual Studio Extension | 10.1.17763.1 |
2020-06-17T11:56:35.6128020Z | WIX Toolset | 0.9.21.62588 |
2020-06-17T11:56:35.6128364Z | WIX Toolset Studio 2017 Extension | 3.11.4516 |
2020-06-17T11:56:35.6128569Z
2020-06-17T11:56:35.6128686Z ### .NET Core SDK
2020-06-17T11:56:35.6128893Z `Location C:\Program Files\dotnet\sdk`
2020-06-17T11:56:35.6130504Z - 1.1.14 2.1.202 2.1.300 2.1.301 2.1.302 2.1.401 2.1.402 2.1.403 2.1.500 2.1.502 2.1.503 2.1.504 2.1.505 2.1.506 2.1.507 2.1.508 2.1.509 2.1.510 2.1.511 2.1.512 2.1.513 2.1.514 2.1.602 2.1.603 2.1.604 2.1.605 2.1.606 2.1.607 2.1.608 2.1.609 2.1.610 2.1.611 2.1.700 2.1.701 2.1.801 2.1.802 2.1.803 2.1.804 2.1.805 2.1.806 2.2.100 2.2.101 2.2.102 2.2.103 2.2.104 2.2.105 2.2.106 2.2.107 2.2.108 2.2.109 2.2.110 2.2.202 2.2.203 2.2.204 2.2.205 2.2.206 2.2.207 2.2.300 2.2.301 2.2.401 2.2.402 3.1.100 3.1.101 3.1.102 3.1.103 3.1.104 3.1.200 3.1.201 3.1.202 3.1.300
2020-06-17T11:56:35.6131317Z
2020-06-17T11:56:35.6131448Z ### .NET Core Runtime
2020-06-17T11:56:35.6131660Z `Location C:\Program Files\dotnet\shared\Microsoft.AspNetCore.All`
2020-06-17T11:56:35.6132184Z - 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.15 2.1.16 2.1.17 2.1.18 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8
2020-06-17T11:56:35.6132501Z
2020-06-17T11:56:35.6132685Z `Location C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App`
2020-06-17T11:56:35.6133145Z - 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.15 2.1.16 2.1.17 2.1.18 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4
2020-06-17T11:56:35.6133534Z
2020-06-17T11:56:35.6133704Z `Location C:\Program Files\dotnet\shared\Microsoft.NETCore.App`
2020-06-17T11:56:35.6134174Z - 1.0.16 1.1.13 2.0.9 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.15 2.1.16 2.1.17 2.1.18 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4
2020-06-17T11:56:35.6134550Z
2020-06-17T11:56:35.6134743Z `Location C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App`
2020-06-17T11:56:35.6134969Z - 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4
2020-06-17T11:56:35.6135084Z
2020-06-17T11:56:35.6135246Z ### .NET Framework
2020-06-17T11:56:35.6136105Z `Location C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX
1.6.0
2.3.2
2.6.0
3.1.0
3.5.0
3.8.0 | C:\Modules\az_\
3.8.0
4.2.1
5.1.1
5.3.0 | C:\Modules\azure_\
3.8.0
4.2.1
5.1.1
6.7.0
6.13.1 | C:\Modules\azurerm_\
PATH
C:\Miniconda\Scripts;C:\Program Files\Mercurial\;C:\Program Files\MongoDB\Server\4.2\bin;C:\ProgramData\kind;C:\Program Files\PostgreSQL\12\bin;C:\vcpkg;C:\cf-cli;C:\Program Files (x86)\NSIS\;C:\Program Files\Mercurial\;C:\hostedtoolcache\windows\stack\2.3.1\x64;C:\ProgramData\chocolatey\lib\ghc.8.10.1\tools\ghc-8.10.1\bin;C:\Program Files\dotnet;C:\mysql-5.7.21-winx64\bin;C:\Program Files\Java\zulu-8-azure-jdk_8.40.0.25-8.0.222-win_x64\bin;C:\SeleniumWebDrivers\GeckoDriver;C:\Program Files (x86)\sbt\bin;C:\Rust\.cargo\bin;C:\hostedtoolcache\windows\go\1.14.4\x64\bin;C:\Program Files (x86)\GitHub CLI;C:\Program Files\Git\bin;C:\hostedtoolcache\windows\Python\3.7.7\x64\Scripts;C:\hostedtoolcache\windows\Python\3.7.7\x64;C:\hostedtoolcache\windows\Ruby\2.5.8\x64\bin;C:\npm\prefix;C:\Program Files (x86)\Microsoft SDKs\Azure\CLI2\wbin;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\windows\System32\OpenSSH\;C:\ProgramData\Chocolatey\bin;C:\Program Files\Docker;C:\Program Files\PowerShell\7\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\130\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code;C:\Program Files\Microsoft SDKs\Service Fabric\Tools\ServiceFabricLocalClusterManager;C:\Program Files\nodejs\;C:\Program Files\OpenSSL\bin;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;c:\tools\php;C:\Program Files (x86)\sbt\bin;C:\Program Files (x86)\Subversion\bin;C:\SeleniumWebDrivers\ChromeDriver\;C:\SeleniumWebDrivers\EdgeDriver\;C:\ProgramData\chocolatey\lib\maven\apache-maven-3.6.3\bin;C:\Program Files\CMake\bin;C:\Program Files\Amazon\AWSCLIV2\;C:\Program Files\Amazon\AWSSAMCLI\bin\;C:\Program Files\PostgreSQL\12\bin;C:\Users\VssAdministrator\.dotnet\tools;C:\Users\VssAdministrator\AppData\Local\Microsoft\WindowsApps
InstalledSoftware
```
2020-06-17T11:43:46.1552192Z ##[section]Starting: [ci debug] InstalledSoftware
2020-06-17T11:43:46.1703956Z ==============================================================================
2020-06-17T11:43:46.1704390Z Task : PowerShell
2020-06-17T11:43:46.1704675Z Description : Run a PowerShell script on Linux, macOS, or Windows
2020-06-17T11:43:46.1704925Z Version : 2.170.1
2020-06-17T11:43:46.1705141Z Author : Microsoft Corporation
2020-06-17T11:43:46.1705477Z Help : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell
2020-06-17T11:43:46.1705842Z ==============================================================================
2020-06-17T11:43:47.3616683Z Generating script.
2020-06-17T11:43:47.4192873Z ========================== Starting Command Output ===========================
2020-06-17T11:43:47.4512497Z ##[command]"C:\Program Files\PowerShell\7\pwsh.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'D:\a\_temp\429e7367-ab12-4132-8db3-a9d04b590b09.ps1'"
2020-06-17T11:43:50.0388580Z # Microsoft Windows Server 2019 Datacenter
2020-06-17T11:43:50.0403462Z - OS Version: 10.0.17763 Build 17763
2020-06-17T11:43:50.0405469Z - Image Version: 20200608.1
2020-06-17T11:43:50.0410245Z
2020-06-17T11:43:50.0413659Z ## Installed Software
2020-06-17T11:43:50.0414312Z ### Language and Runtime
2020-06-17T11:43:50.0419576Z - Java 1.7.0_232
2020-06-17T11:43:50.0421883Z - Java 1.8.0_222 (default)
2020-06-17T11:43:50.0424219Z - Java 11.0.4
2020-06-17T11:43:50.0428213Z - Java 13.0.3
2020-06-17T11:43:50.0428721Z - Rust 1.44.0
2020-06-17T11:43:50.0430892Z - Python 3.7.7
2020-06-17T11:43:50.0433419Z - Ruby 2.5.8p224
2020-06-17T11:43:50.0437173Z - Go 1.14.4
2020-06-17T11:43:50.0437562Z - PHP 7.4.6
2020-06-17T11:43:50.0440620Z - Julia 1.4.2
2020-06-17T11:43:50.0443998Z - Perl 5.30.2
2020-06-17T11:43:50.0446662Z - PowerShell 7.0.1
2020-06-17T11:43:50.0450486Z - Node 12.18.0
2020-06-17T11:43:50.0451296Z
2020-06-17T11:43:50.0454716Z ### Package Management
2020-06-17T11:43:50.0458392Z - Chocolatey 0.10.15
2020-06-17T11:43:50.0460696Z - Vcpkg 2020.02.04
2020-06-17T11:43:50.0464126Z - NPM 6.14.4
2020-06-17T11:43:50.0467934Z - Yarn 1.22.4
2020-06-17T11:43:50.0471943Z - pip 20.1.1 (python 3.7)
2020-06-17T11:43:50.0472262Z - Miniconda 4.6.14
2020-06-17T11:43:50.0476955Z - RubyGems 3.1.4
2020-06-17T11:43:50.0477505Z - Helm 3.2.2
2020-06-17T11:43:50.0482873Z - Composer 1.10.7
2020-06-17T11:43:50.0483191Z
2020-06-17T11:43:50.0483707Z ### Project Management
2020-06-17T11:43:50.0488277Z - Ant 1.10.5
2020-06-17T11:43:50.0491015Z - Maven 3.6.3
2020-06-17T11:43:50.0493539Z - Gradle 6.5
2020-06-17T11:43:50.0495076Z
2020-06-17T11:43:50.0498617Z ### Tools
2020-06-17T11:43:50.0499550Z - Azure CosmosDb Emulator 2.11.0.0
2020-06-17T11:43:50.0503134Z - Bazel 3.2.0
2020-06-17T11:43:50.0503588Z - Bazelisk 1.5.0
2020-06-17T11:43:50.0509479Z - CMake 3.17.3
2020-06-17T11:43:50.0515031Z - Docker 19.03.5
2020-06-17T11:43:50.0518217Z - Docker-compose 1.26.0
2020-06-17T11:43:50.0521135Z - Git 2.27.0
2020-06-17T11:43:50.0521970Z - Git LFS 2.11.0
2020-06-17T11:43:50.0525228Z - InnoSetup 6.0.5
2020-06-17T11:43:50.0529068Z - jq 1.6
2020-06-17T11:43:50.0530812Z - Kubectl 1.18.2
2020-06-17T11:43:50.0534098Z - Kind 0.8.1
2020-06-17T11:43:50.0537788Z - Mingw-w64 8.1.0
2020-06-17T11:43:50.0540391Z - MySQL 5.7.21.0
2020-06-17T11:43:50.0553992Z - Mercurial 5.0
2020-06-17T11:43:50.0555539Z - NSIS 3.5.0.20200106
2020-06-17T11:43:50.0565408Z - OpenSSL 1.1.1
2020-06-17T11:43:50.0576163Z - Packer 1.5.6
2020-06-17T11:43:50.0585985Z - SQLPS 1.0
2020-06-17T11:43:50.0592617Z - SQLServer PS 21.1.18221
2020-06-17T11:43:50.0596997Z - Subversion (SVN) 1.8.17
2020-06-17T11:43:50.0597469Z - ghc 8.10.1
2020-06-17T11:43:50.0605507Z - Cabal 3.2.0.0
2020-06-17T11:43:50.0610699Z - Stack 2.3.1
2020-06-17T11:43:50.0616936Z - WinAppDriver 1.1.1809.18001
2020-06-17T11:43:50.0618696Z - zstd 1.4.0
2020-06-17T11:43:50.0627309Z - VSWhere 2.8.4
2020-06-17T11:43:50.0627905Z - 7zip 19.00
2020-06-17T11:43:50.0632931Z
2020-06-17T11:43:50.0633253Z ### CLI Tools
2020-06-17T11:43:50.0633526Z - Azure CLI 2.7.0
2020-06-17T11:43:50.0633961Z - Azure DevOps CLI extension 0.18.0
2020-06-17T11:43:50.0637130Z - AWS CLI 2.0.19
2020-06-17T11:43:50.0640695Z - AWS SAM CLI 0.52.0
2020-06-17T11:43:50.0642023Z - Alibaba CLI 3.0.26
2020-06-17T11:43:50.0645590Z - Cloud Foundry CLI 6.51.0
2020-06-17T11:43:50.0651373Z - Hub CLI 2.14.2
2020-06-17T11:43:50.0653061Z
2020-06-17T11:43:50.0654696Z ### Browsers and webdrivers
2020-06-17T11:43:50.0661180Z - Google Chrome 83.0.4103.97
2020-06-17T11:43:50.0662845Z - Chrome Driver 83.0.4103.39
2020-06-17T11:43:50.0664769Z - Microsoft Edge 83.0.478.45
2020-06-17T11:43:50.0671022Z - Microsoft Edge Driver 83.0.478.45
2020-06-17T11:43:50.0671533Z - Mozilla Firefox 77.0.1
2020-06-17T11:43:50.0673973Z - Gecko Driver 0.26.0
2020-06-17T11:43:50.0676328Z - IE Driver 3.150.1.0
2020-06-17T11:43:50.0680687Z
2020-06-17T11:43:50.0681721Z ### MSYS2
2020-06-17T11:43:50.0682136Z - Pacman 5.2.1
2020-06-17T11:43:50.0685587Z ```
2020-06-17T11:43:50.0688665Z Location: C:\msys64
2020-06-17T11:43:50.0692969Z
2020-06-17T11:43:50.0695331Z Note: MSYS2 is pre-installed on image but not added to PATH.
2020-06-17T11:43:50.0700137Z ```
2020-06-17T11:43:50.0700521Z ### Cached Tools
2020-06-17T11:43:50.0703710Z #### Boost
2020-06-17T11:43:50.0705690Z | Version | Architecture | Environment Variable |
2020-06-17T11:43:50.0711092Z | ------- | ------------ | -------------------- |
2020-06-17T11:43:50.0712127Z | 1.69.0 | x64, x86 | BOOST_ROOT_1_69_0 |
2020-06-17T11:43:50.0714056Z | 1.72.0 | x64, x86 | BOOST_ROOT_1_72_0 |
2020-06-17T11:43:50.0716776Z ##### Notes:
2020-06-17T11:43:50.0720909Z ```
2020-06-17T11:43:50.0722972Z 1. Environment variable "BOOST_ROOT" is not set by default.
2020-06-17T11:43:50.0724732Z Please make sure you set this variable value to proper value
2020-06-17T11:43:50.0725375Z from table above depending on the Boost version you are using.
2020-06-17T11:43:50.0731214Z 2. If Boost was built using the boost-cmake project or from Boost 1.70.0
2020-06-17T11:43:50.0731980Z on it provides a package configuration file for use with find_package's config mode.
2020-06-17T11:43:50.0734633Z This module looks for the package configuration file called BoostConfig.cmake or boost-config.cmake
2020-06-17T11:43:50.0736803Z and stores the result in CACHE entry "Boost_DIR". If found, the package configuration file
2020-06-17T11:43:50.0740882Z is loaded and this module returns with no further action.
2020-06-17T11:43:50.0741451Z See documentation of the Boost CMake package configuration for details on what it provides.
2020-06-17T11:43:50.0744844Z Set Boost_NO_BOOST_CMAKE to ON, to disable the search for boost-cmake.
2020-06-17T11:43:50.0747129Z Link: https://cmake.org/cmake/help/latest/module/FindBoost.html
2020-06-17T11:43:50.0750317Z ```
2020-06-17T11:43:50.0750549Z
2020-06-17T11:43:50.0754019Z #### Go
2020-06-17T11:43:50.0756577Z | Version | Architecture | Environment Variable |
2020-06-17T11:43:50.0760833Z | ------- | ------------ | -------------------- |
2020-06-17T11:43:50.0763778Z | 1.9.7 | x64 | GOROOT_1_9_X64 |
2020-06-17T11:43:50.0766111Z | 1.10.8 | x64 | GOROOT_1_10_X64 |
2020-06-17T11:43:50.0770469Z | 1.11.13 | x64 | GOROOT_1_11_X64 |
2020-06-17T11:43:50.0770964Z | 1.12.17 | x64 | GOROOT_1_12_X64 |
2020-06-17T11:43:50.0774512Z | 1.13.12 | x64 | GOROOT_1_13_X64 |
2020-06-17T11:43:50.0776704Z | 1.14.4 (Default) | x64 | GOROOT_1_14_X64 |
2020-06-17T11:43:50.0780134Z
2020-06-17T11:43:50.0781373Z
2020-06-17T11:43:50.0782386Z #### Node
2020-06-17T11:43:50.0785722Z | Version | Architecture |
2020-06-17T11:43:50.0786813Z | ------- | ------------ |
2020-06-17T11:43:50.0791840Z | 8.17.0 | x64 |
2020-06-17T11:43:50.0793396Z | 10.21.0 | x64 |
2020-06-17T11:43:50.0795721Z | 12.18.0 | x64 |
2020-06-17T11:43:50.0797514Z | 14.4.0 | x64 |
2020-06-17T11:43:50.0803611Z
2020-06-17T11:43:50.0805231Z
2020-06-17T11:43:50.0807915Z #### Python
2020-06-17T11:43:50.0812068Z | Version | Architecture |
2020-06-17T11:43:50.0814823Z | ------- | ------------ |
2020-06-17T11:43:50.0817295Z | 2.7.18 | x64, x86 |
2020-06-17T11:43:50.0822150Z | 3.5.4 | x64, x86 |
2020-06-17T11:43:50.0822515Z | 3.6.8 | x64, x86 |
2020-06-17T11:43:50.0825277Z | 3.7.7 (Default) | x64, x86 |
2020-06-17T11:43:50.0827511Z | 3.8.3 | x64, x86 |
2020-06-17T11:43:50.0830081Z
2020-06-17T11:43:50.0831275Z
2020-06-17T11:43:50.0834370Z #### Ruby
2020-06-17T11:43:50.0835964Z | Version | Architecture |
2020-06-17T11:43:50.0838251Z | ------- | ------------ |
2020-06-17T11:43:50.0839232Z | 2.4.10 | x64 |
2020-06-17T11:43:50.0842601Z | 2.5.8 (Default) | x64 |
2020-06-17T11:43:50.0843645Z | 2.6.6 | x64 |
2020-06-17T11:43:50.0846799Z | 2.7.1 | x64 |
2020-06-17T11:43:50.0847660Z
2020-06-17T11:43:50.0851254Z
2020-06-17T11:43:50.0852664Z #### PyPy
2020-06-17T11:43:50.0855691Z | Python Version | Architecture | PyPy Version |
2020-06-17T11:43:50.0856189Z | -------------- | ------------ | ------------ |
2020-06-17T11:43:50.0859744Z | 2.7.13 | x86 | PyPy 7.3.1 with MSC v.1912 32 bit |
2020-06-17T11:43:50.0861902Z | 3.6.9 | x86 | PyPy 7.3.1 with MSC v.1912 32 bit |
2020-06-17T11:43:50.0864181Z
2020-06-17T11:43:50.1145308Z
2020-06-17T11:43:50.1147387Z
2020-06-17T11:43:50.1151294Z ### Databases
2020-06-17T11:43:50.1152168Z #### PostgreSQL
2020-06-17T11:43:50.1156899Z | Version | UserName | Password | Path | ServiceName | ServiceStatus | ServiceStartType |
2020-06-17T11:43:50.1158125Z | ------- | -------- | -------- | ------------------------------ | ----------------- | ------------- | ---------------- |
2020-06-17T11:43:50.1162418Z | 12.3 | postgres | root | C:\Program Files\PostgreSQL\12 | postgresql-x64-12 | Stopped | Disabled |
2020-06-17T11:43:50.1163422Z
2020-06-17T11:43:50.1167117Z
2020-06-17T11:43:50.1168529Z #### MongoDB
2020-06-17T11:43:50.1171825Z | Version | ServiceName | ServiceStatus | ServiceStartType |
2020-06-17T11:43:50.1174892Z | ------- | ----------- | ------------- | ---------------- |
2020-06-17T11:43:50.1175457Z | 4.2.7.0 | MongoDB | Running | Automatic |
2020-06-17T11:43:50.1180227Z
2020-06-17T11:43:50.1181203Z
2020-06-17T11:43:50.1184428Z
2020-06-17T11:43:50.1185512Z ### Visual Studio Enterprise 2019
2020-06-17T11:43:50.1193032Z | Name | Version | Path |
2020-06-17T11:43:50.1195910Z | ----------------------------- | ------------- | -------------------------------------------------------------- |
2020-06-17T11:43:50.1196450Z | Visual Studio Enterprise 2019 | 16.6.30128.74 | C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise |
2020-06-17T11:43:50.1199919Z
2020-06-17T11:43:50.1200435Z #### Workloads, components and extensions:
2020-06-17T11:43:50.1203534Z
2020-06-17T11:43:50.1209686Z | Package | version |
2020-06-17T11:43:50.1210698Z | ------------------------------------------------------------------------- | -------------- |
2020-06-17T11:43:50.1214617Z | Component.Android.NDK.R16B | 16.6.30128.16 |
2020-06-17T11:43:50.1215496Z | Component.Android.SDK25.Private | 16.0.28625.61 |
2020-06-17T11:43:50.1220537Z | Component.Android.SDK28 | 16.2.29003.222 |
2020-06-17T11:43:50.1221593Z | Component.Ant | 1.9.3.8 |
2020-06-17T11:43:50.1222677Z | Component.Dotfuscator | 16.0.28528.71 |
2020-06-17T11:43:50.1226136Z | Component.Linux.CMake | 16.2.29003.222 |
2020-06-17T11:43:50.1231022Z | Component.MDD.Android | 16.0.28517.75 |
2020-06-17T11:43:50.1233718Z | Component.MDD.Linux | 16.5.29515.121 |
2020-06-17T11:43:50.1234393Z | Component.MDD.Linux.GCC.arm | 16.5.29515.121 |
2020-06-17T11:43:50.1240381Z | Component.Microsoft.VisualStudio.LiveShare | 1.0.1998 |
2020-06-17T11:43:50.1242807Z | Component.Microsoft.VisualStudio.RazorExtension | 16.0.28714.129 |
2020-06-17T11:43:50.1243935Z | Component.Microsoft.VisualStudio.Tools.Applications | 16.0.29425.2 |
2020-06-17T11:43:50.1247246Z | Component.Microsoft.VisualStudio.Web.AzureFunctions | 16.0.28714.129 |
2020-06-17T11:43:50.1251401Z | Component.Microsoft.Web.LibraryManager | 16.0.28315.86 |
2020-06-17T11:43:50.1252669Z | Component.Microsoft.Windows.DriverKit | 10.0.19030.0 |
2020-06-17T11:43:50.1255372Z | Component.OpenJDK | 16.1.28811.260 |
2020-06-17T11:43:50.1256217Z | Component.UnityEngine.x64 | 16.5.29515.121 |
2020-06-17T11:43:50.1261721Z | Component.Unreal | 16.1.28810.153 |
2020-06-17T11:43:50.1264328Z | Component.Unreal.Android | 16.1.28810.153 |
2020-06-17T11:43:50.1265480Z | Component.WixToolset.VisualStudioExtension.Dev16 | 1.0.0.4 |
2020-06-17T11:43:50.1269091Z | Component.WixToolset.VisualStudioExtension.Schemas3 | 1.0.0.4 |
2020-06-17T11:43:50.1273394Z | Component.WixToolset.VisualStudioExtension.Schemas4 | 1.0.0.4 |
2020-06-17T11:43:50.1274204Z | Component.Xamarin | 16.6.30013.169 |
2020-06-17T11:43:50.1279777Z | Component.Xamarin.RemotedSimulator | 16.0.28315.86 |
2020-06-17T11:43:50.1280504Z | Microsoft.Component.Azure.DataLake.Tools | 16.6.30013.169 |
2020-06-17T11:43:50.1281296Z | Microsoft.Component.MSBuild | 16.5.29515.121 |
2020-06-17T11:43:50.1285239Z | Microsoft.Component.NetFX.Native | 16.5.29515.121 |
2020-06-17T11:43:50.1285923Z | Microsoft.Component.PythonTools | 16.5.29515.121 |
2020-06-17T11:43:50.1292419Z | Microsoft.Component.PythonTools.Miniconda | 16.2.29003.222 |
2020-06-17T11:43:50.1302983Z | Microsoft.Component.PythonTools.Web | 16.0.28517.75 |
2020-06-17T11:43:50.1305312Z | Microsoft.Component.VC.Runtime.UCRTSDK | 16.0.28625.61 |
2020-06-17T11:43:50.1307203Z | Microsoft.ComponentGroup.Blend | 16.0.28315.86 |
2020-06-17T11:43:50.1309866Z | Microsoft.Net.Component.3.5.DeveloperTools | 16.0.28517.75 |
2020-06-17T11:43:50.1313323Z | Microsoft.Net.Component.4.5.1.TargetingPack | 16.0.28517.75 |
2020-06-17T11:43:50.1314117Z | Microsoft.Net.Component.4.5.2.TargetingPack | 16.0.28517.75 |
2020-06-17T11:43:50.1317540Z | Microsoft.Net.Component.4.5.TargetingPack | 16.0.28517.75 |
2020-06-17T11:43:50.1321058Z | Microsoft.Net.Component.4.6.1.TargetingPack | 16.0.28517.75 |
2020-06-17T11:43:50.1323988Z | Microsoft.Net.Component.4.6.2.TargetingPack | 16.0.28517.75 |
2020-06-17T11:43:50.1325239Z | Microsoft.Net.Component.4.6.TargetingPack | 16.0.28517.75 |
2020-06-17T11:43:50.1329429Z | Microsoft.Net.Component.4.7.1.TargetingPack | 16.6.30027.131 |
2020-06-17T11:43:50.1332908Z | Microsoft.Net.Component.4.7.2.SDK | 16.4.29409.204 |
2020-06-17T11:43:50.1333721Z | Microsoft.Net.Component.4.7.2.TargetingPack | 16.6.30027.131 |
2020-06-17T11:43:50.1337096Z | Microsoft.Net.Component.4.7.TargetingPack | 16.6.30027.131 |
2020-06-17T11:43:50.1342708Z | Microsoft.Net.Component.4.8.SDK | 16.4.29313.120 |
2020-06-17T11:43:50.1343509Z | Microsoft.Net.Component.4.TargetingPack | 16.0.28517.75 |
2020-06-17T11:43:50.1352961Z | Microsoft.Net.ComponentGroup.4.6.2.DeveloperTools | 16.3.29207.166 |
2020-06-17T11:43:50.1356403Z | Microsoft.Net.ComponentGroup.4.7.1.DeveloperTools | 16.3.29207.166 |
2020-06-17T11:43:50.1362743Z | Microsoft.Net.ComponentGroup.4.7.DeveloperTools | 16.3.29207.166 |
2020-06-17T11:43:50.1364613Z | Microsoft.Net.ComponentGroup.DevelopmentPrerequisites | 16.3.29207.166 |
2020-06-17T11:43:50.1365628Z | Microsoft.Net.ComponentGroup.TargetingPacks.Common | 16.0.28516.191 |
2020-06-17T11:43:50.1373284Z | Microsoft.Net.Core.Component.SDK.2.1 | 16.6.30107.105 |
2020-06-17T11:43:50.1375584Z | Microsoft.NetCore.Component.DevelopmentTools | 16.5.29721.120 |
2020-06-17T11:43:50.1376629Z | Microsoft.NetCore.Component.Runtime.3.1 | 16.6.30107.105 |
2020-06-17T11:43:50.1383500Z | Microsoft.NetCore.Component.SDK | 16.6.30107.105 |
2020-06-17T11:43:50.1385143Z | Microsoft.NetCore.Component.Web | 16.5.29721.120 |
2020-06-17T11:43:50.1411013Z | Microsoft.VisualStudio.Component.AppInsights.Tools | 16.5.29515.121 |
2020-06-17T11:43:50.1411754Z | Microsoft.VisualStudio.Component.AspNet45 | 16.0.28315.86 |
2020-06-17T11:43:50.1416479Z | Microsoft.VisualStudio.Component.Azure.AuthoringTools | 16.0.28625.61 |
2020-06-17T11:43:50.1419675Z | Microsoft.VisualStudio.Component.Azure.ClientLibs | 16.0.28315.86 |
2020-06-17T11:43:50.1422493Z | Microsoft.VisualStudio.Component.Azure.Compute.Emulator | 16.6.30013.169 |
2020-06-17T11:43:50.1427283Z | Microsoft.VisualStudio.Component.Azure.Kubernetes.Tools | 16.0.28625.61 |
2020-06-17T11:43:50.1431175Z | Microsoft.VisualStudio.Component.Azure.Powershell | 16.5.29515.121 |
2020-06-17T11:43:50.1432558Z | Microsoft.VisualStudio.Component.Azure.ResourceManager.Tools | 16.4.29409.204 |
2020-06-17T11:43:50.1434110Z | Microsoft.VisualStudio.Component.Azure.ServiceFabric.Tools | 16.4.29313.120 |
2020-06-17T11:43:50.1435396Z | Microsoft.VisualStudio.Component.Azure.Storage.AzCopy | 16.0.28517.75 |
2020-06-17T11:43:50.1436845Z | Microsoft.VisualStudio.Component.Azure.Storage.Emulator | 16.4.29313.120 |
2020-06-17T11:43:50.1438297Z | Microsoft.VisualStudio.Component.Azure.Waverton | 16.4.29409.204 |
2020-06-17T11:43:50.1440602Z | Microsoft.VisualStudio.Component.Azure.Waverton.BuildTools | 16.3.29207.166 |
2020-06-17T11:43:50.1441802Z | Microsoft.VisualStudio.Component.ClassDesigner | 16.0.28528.71 |
2020-06-17T11:43:50.1443362Z | Microsoft.VisualStudio.Component.CloudExplorer | 16.0.28625.61 |
2020-06-17T11:43:50.1445265Z | Microsoft.VisualStudio.Component.CodeMap | 16.0.28625.61 |
2020-06-17T11:43:50.1447531Z | Microsoft.VisualStudio.Component.Common.Azure.Tools | 16.4.29409.204 |
2020-06-17T11:43:50.1475710Z | Microsoft.VisualStudio.Component.CoreEditor | 16.1.28811.260 |
2020-06-17T11:43:50.1519788Z | Microsoft.VisualStudio.Component.Debugger.JustInTime | 16.0.28517.75 |
2020-06-17T11:43:50.1557924Z | Microsoft.VisualStudio.Component.Debugger.Snapshot | 16.5.29813.82 |
2020-06-17T11:43:50.1565323Z | Microsoft.VisualStudio.Component.Debugger.TimeTravel | 16.5.29515.121 |
2020-06-17T11:43:50.1568026Z | Microsoft.VisualStudio.Component.DiagnosticTools | 16.5.29515.121 |
2020-06-17T11:43:50.1570484Z | Microsoft.VisualStudio.Component.DockerTools | 16.4.29409.204 |
2020-06-17T11:43:50.1573031Z | Microsoft.VisualStudio.Component.DotNetModelBuilder | 16.6.30013.169 |
2020-06-17T11:43:50.1574140Z | Microsoft.VisualStudio.Component.DslTools | 16.0.28315.86 |
2020-06-17T11:43:50.1578764Z | Microsoft.VisualStudio.Component.EntityFramework | 16.0.28315.86 |
2020-06-17T11:43:50.1580384Z | Microsoft.VisualStudio.Component.FSharp | 16.0.28315.86 |
2020-06-17T11:43:50.1584151Z | Microsoft.VisualStudio.Component.FSharp.Desktop | 16.0.28315.86 |
2020-06-17T11:43:50.1585391Z | Microsoft.VisualStudio.Component.FSharp.WebTemplates | 16.3.29207.166 |
2020-06-17T11:43:50.1589603Z | Microsoft.VisualStudio.Component.GraphDocument | 16.0.28625.61 |
2020-06-17T11:43:50.1590461Z | Microsoft.VisualStudio.Component.Graphics | 16.0.28517.75 |
2020-06-17T11:43:50.1594019Z | Microsoft.VisualStudio.Component.Graphics.Tools | 16.0.28625.61 |
2020-06-17T11:43:50.1594894Z | Microsoft.VisualStudio.Component.IISExpress | 16.0.28315.86 |
2020-06-17T11:43:50.1598169Z | Microsoft.VisualStudio.Component.IntelliCode | 0.2 |
2020-06-17T11:43:50.1608721Z | Microsoft.VisualStudio.Component.IntelliTrace.FrontEnd | 16.5.29515.121 |
2020-06-17T11:43:50.1629753Z | Microsoft.VisualStudio.Component.JavaScript.Diagnostics | 16.0.28517.75 |
2020-06-17T11:43:50.1633130Z | Microsoft.VisualStudio.Component.JavaScript.TypeScript | 16.5.29721.120 |
2020-06-17T11:43:50.1634639Z | Microsoft.VisualStudio.Component.LinqToSql | 16.0.28625.61 |
2020-06-17T11:43:50.1639272Z | Microsoft.VisualStudio.Component.LiveUnitTesting | 16.1.28811.260 |
2020-06-17T11:43:50.1639992Z | Microsoft.VisualStudio.Component.ManagedDesktop.Core | 16.4.29318.151 |
2020-06-17T11:43:50.1644780Z | Microsoft.VisualStudio.Component.ManagedDesktop.Prerequisites | 16.6.30013.169 |
2020-06-17T11:43:50.1646995Z | Microsoft.VisualStudio.Component.Merq | 16.2.29012.281 |
2020-06-17T11:43:50.1649364Z | Microsoft.VisualStudio.Component.MonoDebugger | 16.0.28517.75 |
2020-06-17T11:43:50.1650437Z | Microsoft.VisualStudio.Component.MSODBC.SQL | 16.0.28625.61 |
2020-06-17T11:43:50.1655067Z | Microsoft.VisualStudio.Component.MSSQL.CMDLnUtils | 16.0.28707.177 |
2020-06-17T11:43:50.1657454Z | Microsoft.VisualStudio.Component.Node.Tools | 16.5.29515.121 |
2020-06-17T11:43:50.1662779Z | Microsoft.VisualStudio.Component.NuGet | 16.1.28829.92 |
2020-06-17T11:43:50.1663525Z | Microsoft.VisualStudio.Component.NuGet.BuildTools | 16.1.28829.92 |
2020-06-17T11:43:50.1667789Z | Microsoft.VisualStudio.Component.PortableLibrary | 16.0.28517.75 |
2020-06-17T11:43:50.1668864Z | Microsoft.VisualStudio.Component.Roslyn.Compiler | 16.0.28714.129 |
2020-06-17T11:43:50.1673813Z | Microsoft.VisualStudio.Component.Roslyn.LanguageServices | 16.6.30013.169 |
2020-06-17T11:43:50.1674595Z | Microsoft.VisualStudio.Component.Sharepoint.Tools | 16.4.29409.204 |
2020-06-17T11:43:50.1680537Z | Microsoft.VisualStudio.Component.SQL.ADAL | 16.0.28517.75 |
2020-06-17T11:43:50.1682860Z | Microsoft.VisualStudio.Component.SQL.CLR | 16.0.28315.86 |
2020-06-17T11:43:50.1683548Z | Microsoft.VisualStudio.Component.SQL.DataSources | 16.0.28315.86 |
2020-06-17T11:43:50.1687848Z | Microsoft.VisualStudio.Component.SQL.LocalDB.Runtime | 16.0.28625.61 |
2020-06-17T11:43:50.1690906Z | Microsoft.VisualStudio.Component.SQL.SSDT | 16.3.29207.166 |
2020-06-17T11:43:50.1693088Z | Microsoft.VisualStudio.Component.TeamOffice | 16.4.29409.204 |
2020-06-17T11:43:50.1695391Z | Microsoft.VisualStudio.Component.TestTools.CodedUITest | 16.0.28327.66 |
2020-06-17T11:43:50.1700977Z | Microsoft.VisualStudio.Component.TestTools.WebLoadTest | 16.0.28625.61 |
2020-06-17T11:43:50.1769746Z | Microsoft.VisualStudio.Component.TextTemplating | 16.0.28625.61 |
2020-06-17T11:43:50.1770539Z | Microsoft.VisualStudio.Component.TypeScript.3.8 | 16.0.29813.82 |
2020-06-17T11:43:50.1774509Z | Microsoft.VisualStudio.Component.Unity | 16.0.28315.86 |
2020-06-17T11:43:50.1776787Z | Microsoft.VisualStudio.Component.UWP.VC.ARM64 | 16.3.29207.166 |
2020-06-17T11:43:50.1785711Z | Microsoft.VisualStudio.Component.VC.140 | 16.0.28625.61 |
2020-06-17T11:43:50.1786489Z | Microsoft.VisualStudio.Component.VC.ASAN | 16.5.29515.121 |
2020-06-17T11:43:50.1787168Z | Microsoft.VisualStudio.Component.VC.ATL | 16.4.29313.120 |
2020-06-17T11:43:50.1790004Z | Microsoft.VisualStudio.Component.VC.ATL.ARM | 16.4.29313.120 |
2020-06-17T11:43:50.1793609Z | Microsoft.VisualStudio.Component.VC.ATL.ARM.Spectre | 16.5.29721.120 |
2020-06-17T11:43:50.1794940Z | Microsoft.VisualStudio.Component.VC.ATL.ARM64 | 16.4.29313.120 |
2020-06-17T11:43:50.1798995Z | Microsoft.VisualStudio.Component.VC.ATL.ARM64.Spectre | 16.5.29515.121 |
2020-06-17T11:43:50.1801143Z | Microsoft.VisualStudio.Component.VC.ATL.Spectre | 16.5.29515.121 |
2020-06-17T11:43:50.1804129Z | Microsoft.VisualStudio.Component.VC.ATLMFC | 16.4.29313.120 |
2020-06-17T11:43:50.1806354Z | Microsoft.VisualStudio.Component.VC.ATLMFC.Spectre | 16.5.29721.120 |
2020-06-17T11:43:50.1810255Z | Microsoft.VisualStudio.Component.VC.CLI.Support | 16.6.30013.169 |
2020-06-17T11:43:50.1812199Z | Microsoft.VisualStudio.Component.VC.CMake.Project | 16.3.29103.31 |
2020-06-17T11:43:50.1813967Z | Microsoft.VisualStudio.Component.VC.CoreIde | 16.0.28625.61 |
2020-06-17T11:43:50.1818335Z | Microsoft.VisualStudio.Component.VC.DiagnosticTools | 16.5.29515.121 |
2020-06-17T11:43:50.1819421Z | Microsoft.VisualStudio.Component.VC.Llvm.Clang | 16.6.30027.131 |
2020-06-17T11:43:50.1823434Z | Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset | 16.3.29207.166 |
2020-06-17T11:43:50.1824186Z | Microsoft.VisualStudio.Component.VC.MFC.ARM | 16.4.29313.120 |
2020-06-17T11:43:50.1826260Z | Microsoft.VisualStudio.Component.VC.MFC.ARM.Spectre | 16.5.29721.120 |
2020-06-17T11:43:50.1830461Z | Microsoft.VisualStudio.Component.VC.MFC.ARM64 | 16.4.29313.120 |
2020-06-17T11:43:50.1832520Z | Microsoft.VisualStudio.Component.VC.MFC.ARM64.Spectre | 16.5.29721.120 |
2020-06-17T11:43:50.1836171Z | Microsoft.VisualStudio.Component.VC.Redist.14.Latest | 16.5.29515.121 |
2020-06-17T11:43:50.1839123Z | Microsoft.VisualStudio.Component.VC.Redist.MSM | 16.5.29515.121 |
2020-06-17T11:43:50.1839818Z | Microsoft.VisualStudio.Component.VC.Runtimes.ARM.Spectre | 16.6.30013.169 |
2020-06-17T11:43:50.1843200Z | Microsoft.VisualStudio.Component.VC.Runtimes.ARM64.Spectre | 16.6.30013.169 |
2020-06-17T11:43:50.1844602Z | Microsoft.VisualStudio.Component.VC.Runtimes.x86.x64.Spectre | 16.6.30013.169 |
2020-06-17T11:43:50.1847557Z | Microsoft.VisualStudio.Component.VC.TestAdapterForBoostTest | 16.0.28517.75 |
2020-06-17T11:43:50.1852687Z | Microsoft.VisualStudio.Component.VC.TestAdapterForGoogleTest | 16.0.28517.75 |
2020-06-17T11:43:50.1853437Z | Microsoft.VisualStudio.Component.VC.Tools.ARM | 16.6.30013.169 |
2020-06-17T11:43:50.1857074Z | Microsoft.VisualStudio.Component.VC.Tools.ARM64 | 16.6.30013.169 |
2020-06-17T11:43:50.1860089Z | Microsoft.VisualStudio.Component.VC.Tools.x86.x64 | 16.6.30013.169 |
2020-06-17T11:43:50.1860725Z | Microsoft.VisualStudio.Component.VC.v141.ARM | 16.6.30013.169 |
2020-06-17T11:43:50.1865296Z | Microsoft.VisualStudio.Component.VC.v141.ARM.Spectre | 16.5.29515.121 |
2020-06-17T11:43:50.1866043Z | Microsoft.VisualStudio.Component.VC.v141.ARM64 | 16.6.30013.169 |
2020-06-17T11:43:50.1869452Z | Microsoft.VisualStudio.Component.VC.v141.ARM64.Spectre | 16.5.29515.121 |
2020-06-17T11:43:50.1871245Z | Microsoft.VisualStudio.Component.VC.v141.ATL.ARM.Spectre | 16.5.29721.120 |
2020-06-17T11:43:50.1875558Z | Microsoft.VisualStudio.Component.VC.v141.ATL.ARM64.Spectre | 16.0.28625.61 |
2020-06-17T11:43:50.1879559Z | Microsoft.VisualStudio.Component.VC.v141.ATL.Spectre | 16.0.28625.61 |
2020-06-17T11:43:50.1884795Z | Microsoft.VisualStudio.Component.VC.v141.MFC.ARM.Spectre | 16.0.28625.61 |
2020-06-17T11:43:50.1895310Z | Microsoft.VisualStudio.Component.VC.v141.MFC.ARM64.Spectre | 16.0.28625.61 |
2020-06-17T11:43:50.1897028Z | Microsoft.VisualStudio.Component.VC.v141.MFC.Spectre | 16.0.28625.61 |
2020-06-17T11:43:50.1901297Z | Microsoft.VisualStudio.Component.VC.v141.x86.x64 | 16.6.30013.169 |
2020-06-17T11:43:50.1905287Z | Microsoft.VisualStudio.Component.VC.v141.x86.x64.Spectre | 16.5.29515.121 |
2020-06-17T11:43:50.1907955Z | Microsoft.VisualStudio.Component.VSSDK | 16.0.28315.86 |
2020-06-17T11:43:50.1911127Z | Microsoft.VisualStudio.Component.Wcf.Tooling | 16.0.28625.61 |
2020-06-17T11:43:50.1916237Z | Microsoft.VisualStudio.Component.Web | 16.0.28517.75 |
2020-06-17T11:43:50.1918876Z | Microsoft.VisualStudio.Component.WebDeploy | 16.0.28517.75 |
2020-06-17T11:43:50.1922175Z | Microsoft.VisualStudio.Component.Windows10SDK | 16.4.29409.204 |
2020-06-17T11:43:50.1925730Z | Microsoft.VisualStudio.Component.Windows10SDK.16299 | 16.6.30027.131 |
2020-06-17T11:43:50.1928617Z | Microsoft.VisualStudio.Component.Windows10SDK.17134 | 16.6.30027.131 |
2020-06-17T11:43:50.1931618Z | Microsoft.VisualStudio.Component.Windows10SDK.17763 | 16.0.28517.75 |
2020-06-17T11:43:50.1932600Z | Microsoft.VisualStudio.Component.Windows10SDK.18362 | 16.1.28829.92 |
2020-06-17T11:43:50.1937075Z | Microsoft.VisualStudio.Component.Windows10SDK.19041 | 16.6.30107.105 |
2020-06-17T11:43:50.1937803Z | Microsoft.VisualStudio.Component.WinXP | 16.1.28811.260 |
2020-06-17T11:43:50.1941794Z | Microsoft.VisualStudio.Component.Workflow | 16.0.28315.86 |
2020-06-17T11:43:50.1942764Z | Microsoft.VisualStudio.ComponentGroup.ArchitectureTools.Native | 16.0.28621.142 |
2020-06-17T11:43:50.1946986Z | Microsoft.VisualStudio.ComponentGroup.Azure.CloudServices | 16.4.29409.204 |
2020-06-17T11:43:50.1949949Z | Microsoft.VisualStudio.ComponentGroup.Azure.Prerequisites | 16.4.29409.204 |
2020-06-17T11:43:50.1953251Z | Microsoft.VisualStudio.ComponentGroup.Azure.ResourceManager.Tools | 16.0.28528.71 |
2020-06-17T11:43:50.1954792Z | Microsoft.VisualStudio.ComponentGroup.AzureFunctions | 16.0.28621.142 |
2020-06-17T11:43:50.1958883Z | Microsoft.VisualStudio.ComponentGroup.MSIX.Packaging | 16.4.29409.204 |
2020-06-17T11:43:50.1960056Z | Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core | 16.2.29012.281 |
2020-06-17T11:43:50.1962808Z | Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Llvm.Clang | 16.6.30027.131 |
2020-06-17T11:43:50.1965996Z | Microsoft.VisualStudio.ComponentGroup.UWP.NetCoreAndStandard | 16.3.29102.218 |
2020-06-17T11:43:50.1969214Z | Microsoft.VisualStudio.ComponentGroup.UWP.Support | 16.4.29409.204 |
2020-06-17T11:43:50.1970800Z | Microsoft.VisualStudio.ComponentGroup.UWP.Xamarin | 16.5.29514.35 |
2020-06-17T11:43:50.1973414Z | Microsoft.VisualStudio.ComponentGroup.VisualStudioExtension.Prerequisites | 16.4.29318.151 |
2020-06-17T11:43:50.1977251Z | Microsoft.VisualStudio.ComponentGroup.Web | 16.4.29318.151 |
2020-06-17T11:43:50.1980235Z | Microsoft.VisualStudio.ComponentGroup.Web.CloudTools | 16.2.29003.222 |
2020-06-17T11:43:50.1981390Z | Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions | 16.6.30013.169 |
2020-06-17T11:43:50.1982154Z | Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.CMake | 16.3.29207.166 |
2020-06-17T11:43:50.1985706Z | Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions.TemplateEngine | 16.0.28315.86 |
2020-06-17T11:43:50.1988441Z | Microsoft.VisualStudio.Workload.Azure | 16.4.29409.204 |
2020-06-17T11:43:50.1990497Z | Microsoft.VisualStudio.Workload.CoreEditor | 16.0.28315.86 |
2020-06-17T11:43:50.1993547Z | Microsoft.VisualStudio.Workload.Data | 16.0.28720.110 |
2020-06-17T11:43:50.1994257Z | Microsoft.VisualStudio.Workload.DataScience | 16.0.28720.110 |
2020-06-17T11:43:50.1997773Z | Microsoft.VisualStudio.Workload.ManagedDesktop | 16.6.30013.169 |
2020-06-17T11:43:50.2001317Z | Microsoft.VisualStudio.Workload.ManagedGame | 16.5.29514.35 |
2020-06-17T11:43:50.2002082Z | Microsoft.VisualStudio.Workload.NativeCrossPlat | 16.4.29409.204 |
2020-06-17T11:43:50.2006523Z | Microsoft.VisualStudio.Workload.NativeDesktop | 16.5.29514.35 |
2020-06-17T11:43:50.2008521Z | Microsoft.VisualStudio.Workload.NativeGame | 16.5.29514.35 |
2020-06-17T11:43:50.2010021Z | Microsoft.VisualStudio.Workload.NativeMobile | 16.5.29514.35 |
2020-06-17T11:43:50.2023009Z | Microsoft.VisualStudio.Workload.NetCoreTools | 16.6.30013.169 |
2020-06-17T11:43:50.2027172Z | Microsoft.VisualStudio.Workload.NetCrossPlat | 16.5.29514.35 |
2020-06-17T11:43:50.2029490Z | Microsoft.VisualStudio.Workload.NetWeb | 16.4.29409.204 |
2020-06-17T11:43:50.2033727Z | Microsoft.VisualStudio.Workload.Node | 16.1.28825.262 |
2020-06-17T11:43:50.2035258Z | Microsoft.VisualStudio.Workload.Office | 16.3.29207.166 |
2020-06-17T11:43:50.2039948Z | Microsoft.VisualStudio.Workload.Python | 16.0.28621.142 |
2020-06-17T11:43:50.2040565Z | Microsoft.VisualStudio.Workload.Universal | 16.6.30020.46 |
2020-06-17T11:43:50.2044563Z | Microsoft.VisualStudio.Workload.VisualStudioExtension | 16.4.29409.204 |
2020-06-17T11:43:50.2047628Z | SSDT Microsoft Analysis Services Projects | 2.9.10 |
2020-06-17T11:43:50.2049398Z | SSDT SQL Server Integration Services Projects | 3.7 |
2020-06-17T11:43:50.2052345Z | SSDT Microsoft Reporting Services Projects | 2.6.7 |
2020-06-17T11:43:50.2053141Z | Windows Driver Kit | 1.0.0.4 |
2020-06-17T11:43:50.2056435Z | Windows Driver Kit Visual Studio Extension | 10.1.19041.1 |
2020-06-17T11:43:50.2058828Z | WIX Toolset | 1.0.0.4 |
2020-06-17T11:43:50.2060601Z | WIX Toolset Studio 2019 Extension | 3.11.4516 |
2020-06-17T11:43:50.2063312Z
2020-06-17T11:43:50.2065902Z ### .NET Core SDK
2020-06-17T11:43:50.2067135Z `Location C:\Program Files\dotnet\sdk`
2020-06-17T11:43:50.2092665Z - 2.1.300 2.1.301 2.1.302 2.1.401 2.1.402 2.1.403 2.1.500 2.1.502 2.1.503 2.1.504 2.1.505 2.1.506 2.1.507 2.1.508 2.1.509 2.1.510 2.1.511 2.1.512 2.1.513 2.1.514 2.1.602 2.1.603 2.1.604 2.1.605 2.1.606 2.1.607 2.1.608 2.1.609 2.1.610 2.1.611 2.1.700 2.1.701 2.1.801 2.1.802 2.1.803 2.1.804 2.1.805 2.1.806 2.2.100 2.2.101 2.2.102 2.2.103 2.2.104 2.2.105 2.2.106 2.2.107 2.2.108 2.2.109 2.2.110 2.2.202 2.2.203 2.2.204 2.2.205 2.2.206 2.2.207 2.2.300 2.2.301 2.2.401 2.2.402 3.1.100 3.1.101 3.1.102 3.1.103 3.1.104 3.1.200 3.1.201 3.1.202 3.1.300
2020-06-17T11:43:50.2118248Z
2020-06-17T11:43:50.2127132Z ### .NET Core Runtime
2020-06-17T11:43:50.2139353Z `Location C:\Program Files\dotnet\shared\Microsoft.AspNetCore.All`
2020-06-17T11:43:50.2146170Z - 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.15 2.1.16 2.1.17 2.1.18 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8
2020-06-17T11:43:50.2147517Z
2020-06-17T11:43:50.2147910Z `Location C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App`
2020-06-17T11:43:50.2148493Z - 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.15 2.1.16 2.1.17 2.1.18 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4
2020-06-17T11:43:50.2149005Z
2020-06-17T11:43:50.2149615Z `Location C:\Program Files\dotnet\shared\Microsoft.NETCore.App`
2020-06-17T11:43:50.2150422Z - 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.15 2.1.16 2.1.17 2.1.18 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4
2020-06-17T11:43:50.2151027Z
2020-06-17T11:43:50.2151284Z `Location C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App`
2020-06-17T11:43:50.2151546Z - 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4
2020-06-17T11:43:50.2151698Z
2020-06-17T11:43:50.2151829Z ### .NET Framework
2020-06-17T11:43:50.2152149Z `Location C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX
1.6.0
2.3.2
2.6.0
3.1.0
3.5.0
3.8.0 | C:\Modules\az_\
3.8.0
4.2.1
5.1.1
5.3.0 | C:\Modules\azure_\
3.8.0
4.2.1
5.1.1
6.7.0
6.13.1 | C:\Modules\azurerm_\
Thank you for your help with debug. Looks like that broken PATH is root cause of issue with Git. But it is still unclear why PATH is broken in the first step of pipeline. It is not the image issue since image 20200604.1 was deployed at least 1 week ago. Also we can't reproduce it from our side.
As a temporary solution, you can fix PATH by adding line to your pipeline:
echo '##vso[task.setvariable variable=PATH]C:\Program Files\Mercurial\;C:\Program Files\MongoDB\Server\4.2\bin;C:\ProgramData\kind;C:\vcpkg;C:\cf-cli;C:\Program Files (x86)\NSIS\;C:\Program Files\Mercurial\;C:\hostedtoolcache\windows\stack\2.3.1\x64;C:\ProgramData\chocolatey\lib\ghc.8.10.1\tools\ghc-8.10.1\bin;C:\Program Files\dotnet;C:\mysql-5.7.21-winx64\bin;C:\Program Files\Java\zulu-8-azure-jdk_8.40.0.25-8.0.222-win_x64\bin;C:\SeleniumWebDrivers\GeckoDriver;C:\Program Files (x86)\sbt\bin;C:\Rust\.cargo\bin;C:\hostedtoolcache\windows\go\1.14.4\x64\bin;C:\Program Files (x86)\GitHub CLI;C:\Program Files\Git\bin;C:\hostedtoolcache\windows\Python\3.7.7\x64\Scripts;C:\hostedtoolcache\windows\Python\3.7.7\x64;C:\hostedtoolcache\windows\Ruby\2.5.8\x64\bin;C:\Program Files\PostgreSQL\12\bin;C:\npm\prefix;C:\Program Files (x86)\Microsoft SDKs\Azure\CLI2\wbin;C:\Program Files\Microsoft MPI\Bin\;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\ProgramData\Chocolatey\bin;C:\Program Files\Docker;C:\Program Files\PowerShell\7\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\130\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code;C:\Program Files\Microsoft SDKs\Service Fabric\Tools\ServiceFabricLocalClusterManager;C:\Program Files\nodejs\;C:\Program Files\PostgreSQL\12\bin;C:\Program Files\OpenSSL\bin;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;c:\tools\php;C:\Program Files (x86)\sbt\bin;C:\Program Files (x86)\Subversion\bin;C:\SeleniumWebDrivers\ChromeDriver\;C:\SeleniumWebDrivers\EdgeDriver\;C:\ProgramData\chocolatey\lib\maven\apache-maven-3.6.3\bin;C:\Program Files\CMake\bin;C:\Program Files\Amazon\AWSCLIV2\;C:\Program Files\Amazon\AWSSAMCLI\bin\;C:\Users\VssAdministrator\.dotnet\tools;C:\Users\VssAdministrator\AppData\Local\Microsoft\WindowsApps'
Also, could you please check if this issue reproduces for any other organization or only the single one is affected?
We will continue investigation and will return back with results.
Thanks for the info. Should this echo be used also for windows-2019
?
got the following too.
Apparently C:\InstalledSoftware.md could not be found.
I am sorry, I hope I am not creating too much noise, but I started seeing the following as well.
In vs2017-win2016 during checkout I got ##[error]Git checkout failed with exit code: 128
Another one
``` 2020-06-17T13:55:30.7201550Z ##[section]Starting: Initialize job 2020-06-17T13:55:30.7204268Z Agent name: 'Hosted Agent' 2020-06-17T13:55:30.7205120Z Agent machine name: 'fv-az9' 2020-06-17T13:55:30.7205355Z Current agent version: '2.170.1' 2020-06-17T13:55:30.7238962Z Agent running as: 'VssAdministrator' 2020-06-17T13:55:30.7294608Z Prepare build directory. 2020-06-17T13:55:30.7833264Z Set build variables. 2020-06-17T13:55:30.7877826Z Download all required tasks. 2020-06-17T13:55:30.8231218Z Checking job knob settings. 2020-06-17T13:55:30.8240739Z Knob: AgentPerflog = c:\vsts\perflog Source: ${VSTS_AGENT_PERFLOG} 2020-06-17T13:55:30.8241386Z Finished checking job knob settings. 2020-06-17T13:55:30.8733454Z Start tracking orphan processes. 2020-06-17T13:55:30.8826721Z ##[section]Finishing: Initialize job``` ```
The screenshot is the output of executing
steps:
# https://github.com/actions/virtual-environments/issues/1064#issuecomment-645355279
- script: echo '##vso[task.setvariable variable=PATH]C:\Program Files\Mercurial\;C:\Program Files\MongoDB\Server\4.2\bin;C:\ProgramData\kind;C:\vcpkg;C:\cf-cli;C:\Program Files (x86)\NSIS\;C:\Program Files\Mercurial\;C:\hostedtoolcache\windows\stack\2.3.1\x64;C:\ProgramData\chocolatey\lib\ghc.8.10.1\tools\ghc-8.10.1\bin;C:\Program Files\dotnet;C:\mysql-5.7.21-winx64\bin;C:\Program Files\Java\zulu-8-azure-jdk_8.40.0.25-8.0.222-win_x64\bin;C:\SeleniumWebDrivers\GeckoDriver;C:\Program Files (x86)\sbt\bin;C:\Rust\.cargo\bin;C:\hostedtoolcache\windows\go\1.14.4\x64\bin;C:\Program Files (x86)\GitHub CLI;C:\Program Files\Git\bin;C:\hostedtoolcache\windows\Python\3.7.7\x64\Scripts;C:\hostedtoolcache\windows\Python\3.7.7\x64;C:\hostedtoolcache\windows\Ruby\2.5.8\x64\bin;C:\Program Files\PostgreSQL\12\bin;C:\npm\prefix;C:\Program Files (x86)\Microsoft SDKs\Azure\CLI2\wbin;C:\Program Files\Microsoft MPI\Bin\;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\ProgramData\Chocolatey\bin;C:\Program Files\Docker;C:\Program Files\PowerShell\7\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\130\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code;C:\Program Files\Microsoft SDKs\Service Fabric\Tools\ServiceFabricLocalClusterManager;C:\Program Files\nodejs\;C:\Program Files\PostgreSQL\12\bin;C:\Program Files\OpenSSL\bin;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;c:\tools\php;C:\Program Files (x86)\sbt\bin;C:\Program Files (x86)\Subversion\bin;C:\SeleniumWebDrivers\ChromeDriver\;C:\SeleniumWebDrivers\EdgeDriver\;C:\ProgramData\chocolatey\lib\maven\apache-maven-3.6.3\bin;C:\Program Files\CMake\bin;C:\Program Files\Amazon\AWSCLIV2\;C:\Program Files\Amazon\AWSSAMCLI\bin\;C:\Users\VssAdministrator\.dotnet\tools;C:\Users\VssAdministrator\AppData\Local\Microsoft\WindowsApps'
displayName: "[ci fix 1064] Sets PATH"
@FrancescElies possible root cause has been found in the infrastructure settings. Could you please check one more time?
@maxim-lobanov & @miketimofeev thanks fork your great support!
I undid changes
steps:
# https://github.com/actions/virtual-environments/issues/1064#issuecomment-645355279
- script: echo '##vso[task.setvariable variable=PATH]C:\Program Files\Mercurial\;C:\Program Files\MongoDB\Server\4.2\bin;C:\ProgramData\kind;C:\vcpkg;C:\cf-cli;C:\Program Files (x86)\NSIS\;C:\Program Files\Mercurial\;C:\hostedtoolcache\windows\stack\2.3.1\x64;C:\ProgramData\chocolatey\lib\ghc.8.10.1\tools\ghc-8.10.1\bin;C:\Program Files\dotnet;C:\mysql-5.7.21-winx64\bin;C:\Program Files\Java\zulu-8-azure-jdk_8.40.0.25-8.0.222-win_x64\bin;C:\SeleniumWebDrivers\GeckoDriver;C:\Program Files (x86)\sbt\bin;C:\Rust\.cargo\bin;C:\hostedtoolcache\windows\go\1.14.4\x64\bin;C:\Program Files (x86)\GitHub CLI;C:\Program Files\Git\bin;C:\hostedtoolcache\windows\Python\3.7.7\x64\Scripts;C:\hostedtoolcache\windows\Python\3.7.7\x64;C:\hostedtoolcache\windows\Ruby\2.5.8\x64\bin;C:\Program Files\PostgreSQL\12\bin;C:\npm\prefix;C:\Program Files (x86)\Microsoft SDKs\Azure\CLI2\wbin;C:\Program Files\Microsoft MPI\Bin\;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\ProgramData\Chocolatey\bin;C:\Program Files\Docker;C:\Program Files\PowerShell\7\;C:\Program Files\dotnet\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\130\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code;C:\Program Files\Microsoft SDKs\Service Fabric\Tools\ServiceFabricLocalClusterManager;C:\Program Files\nodejs\;C:\Program Files\PostgreSQL\12\bin;C:\Program Files\OpenSSL\bin;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;c:\tools\php;C:\Program Files (x86)\sbt\bin;C:\Program Files (x86)\Subversion\bin;C:\SeleniumWebDrivers\ChromeDriver\;C:\SeleniumWebDrivers\EdgeDriver\;C:\ProgramData\chocolatey\lib\maven\apache-maven-3.6.3\bin;C:\Program Files\CMake\bin;C:\Program Files\Amazon\AWSCLIV2\;C:\Program Files\Amazon\AWSSAMCLI\bin\;C:\Users\VssAdministrator\.dotnet\tools;C:\Users\VssAdministrator\AppData\Local\Microsoft\WindowsApps'
displayName: "[ci fix 1064] Sets PATH"
See below the results so far, I'll keep you posted with more updates
π Things look much better now. I still need need to run it a couple of times and see but I am getting a good feeling here.
β I still see some problems with a git lfs file, I need a bit of time though to confirm if this problem resides on our side.
The issue I mentioned before is not tied to windows-2019
, I tried vs2017-win2016
and I am getting the same behavior.
Git version is still changing after checkout, I am unsure where the problem is but I am unable to reproduce locally.
@FrancescElies , Am I right that initial issue (git lfs is not installed ##[error]git: 'lfs' is not a git command. See 'git --help'.
and empty PATH) is fixed for now?
Currently, do you have the different issue with git lfs?
@FrancescElies , Am I right that initial issue (git lfs is not installed
##[error]git: 'lfs' is not a git command. See 'git --help'.
and empty PATH) is fixed for now?
Right, that one is gone β
Currently, do you have the different issue with git lfs?
That one is different, though I don't have a proof it appeared at the "same time" I believe. It felt correlated.
I you prefer I could close this issue and bring that point to a different one.
@FrancescElies , Yes, let's separate those issue to simplify tracking. Thank you for your help with investigation! π
@maxim-lobanov & @miketimofeev: thanks for the great support! π
Hi @maxim-lobanov & @miketimofeev,
I hope it's fine for you if Iwrite on a closed issue (I' fine to open discussion elsewhere if it's better for you).
We had similar problems on self hosted machines and their paths.
The problem:
If I install those git versions in a machine (with chocolatey) following versions come in pairs:
choco install git.install --version=2.27.0
git --version; git-lfs --version
git version 2.27.0.windows.1
git-lfs/2.11.0 (GitHub; windows git version 2.26.2.windows.1
choco install git.install --version=2.26.2
git --version; git-lfs --version
git version 2.26.2.windows.1
git-lfs/2.10.0 (GitHub; windows amd64; go 1.12.7; git a526ba6b)
If we downgrade git on a self-hosted machine, things seem work fine. With latest git 2.27 things break.
For the moment we are downgrading git to v2.26 on our self hosted machines. We are testing at the moment, let's see how it goes.
Questions:
@FrancescElies , we are not experts with Git-lfs so could be wrong :)
1) git-lfs - additional tool that is integrated with git (looks like when you invoke git lfs
, git is trying to invoke git-lfs.exe
from PATH)
2) Looks like you easily can install any version of git-lfs with any version of Git. You just need to download installer for specific version.
3) We don't use choco to install Git so can't say about pros and cons of this approach.
During image-generation, we install git-for-windows. It could be installed with Git-LFS (using flag /COMPONENTS=gitlfs
) or without it. Please see install script for details: https://github.com/actions/virtual-environments/blob/master/images/win/scripts/Installers/Install-Git.ps1
@maxim-lobanov
I am having a weird build behaviour (related to git lfs), windows-2019
image I see the following inside the checkout
step.
π₯This does not look like the right combination of git and git-lfs.
I have some git lfs files, they seem to be correctly checked out, I printed their hashes and they look fine to me. π
I am yet puzzled, a build step which was working before suddenly stopped at the same time Git lfs not a git command
. This step works fine for me locally.
If search for git and git- lfs I can see following binaries
C:\agents\2.170.1\externals\git\cmd\git.exe
C:\Program Files\Git\bin\git.exe
C:\Program Files\Git\cmd\git-lfs.exe
I would have expected to find C:\agents\2.170.1\externals\git\cmd\git-lfs.exe
, but it doesn't exist.
I could not yet confirm if this bug is because or repo or the cloud environment.
Suggestions?
Combination git 2.2.6.2
and git-lfs 2.11.0
looks correctly for me.
Any version of git-lfs
supports any version of git >= 1.8.2 so it should not be the issue.
So git
from externals should work correctly with pre-installed git-lfs
Describe the bug
Context
Following snippet used to work:
The current Problem
I get the following error
I tried git-lfs instead but no luck
How could I get this to work again?
Imae info
Area for Triage: Git
Question, Bug, or Feature?: Bug
Virtual environments affected
Expected behavior
Should not complain about lfs not being a git command
Actual behavior See above