namespace CustomInstall{ [RunInstaller(true)] public class CustomInstaller : Installer { public override void Install(System.Collections.IDictionary stateSaver) { base.Install(stateSaver); //Code to install third party prerequisites goes here. } }}