Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio Installation Logs Location (2019+)

There is a Microsoft Tool called "Collect" which can retrieve logs from the Installer, but where are the actual files being originally created by the Visual Studio Installer for editions that have the stand-alone install app?

like image 678
Coruscate5 Avatar asked Feb 23 '26 16:02

Coruscate5


1 Answers

In addition to writing normal events to the Event Logs, the newer Visual Studio installer generally writes all logs directly to %TEMP% of the user actually running the installation, using the prefix dd_*.

%TEMP%, at the time of this answer, points to C:\Users\USERNAME\AppData\Local\Temp

ProcMon can help you narrow down specific use cases for each type of Installation Log, I've encountered the following types:

  • dd_setup_* : Setup/execution of next package log
  • dd_installer_* : Pre-install logs
  • dd_backgrounddownload_* : Pre-update logs for automatic VS updates (before launching Installer)
like image 136
Coruscate5 Avatar answered Feb 25 '26 07:02

Coruscate5