Hidden Windows Installer

Can I mock the Windows installer? I would like to configure tests for various scenarios during installation. I don’t care what is stored in the Windows installer databases, I just want to test the output of the installer packages (which files were changed, etc.).

Edit

I suppose I can customize VMWare images and script them. Does anyone know how to script / automate tasks in VMWare instances?

+6
source share
1 answer

Yes it is possible. You need two things:

  • A development tool that can create packages. The command line interface or scripting solution is perfect for automation.
  • A resource monitor that determines what each installation does. You can use Process Monitor or another tool that monitors files and the registry.

As an additional feature, I would also suggest a log analyzer. Thus, you can c create a detailed log for each installation and analyze the log to see what it did to the target machine.

0
source

Source: https://habr.com/ru/post/898516/


All Articles