0

The SetUp projects from Visual Studio will have their installation logs under temp folder with the name format like " %temp%\ .log "

Can I have some customization done here, so that these installation logs will go to a specific folder ?

Mparame
  • 37
  • 8

1 Answers1

0

You can change the location that MSI logs are written to by invoking MSIEXEC with the /L <logfilepath> argument. If you cannot change the command line arguments (such as if the MSI is invoked by a setup executable), edit the registry to change the default log location.

akton
  • 14,148
  • 3
  • 43
  • 47