I've created this installer using burn bootstrapper. Now when a user clicks cancel button, how can I rollback all the changes made during the installation? My EXE currently includes 3 MSIs. So if a user clicks cancel halfway down, how can I remove the previously installed MSIs during this installation? Below is what my cancel button executes.
public void ExitExecute()
{
CustomBA.BootstrapperDispatcher.InvokeShutdown();
}