Hi,
I have recently been playing around with Powershell and building msi files. One option I don't have access to is changing the theme (dialog and banner) within Powershell. Will this be an option in the future?
Thanks,
~Tiffany
					Find out more ›
Code: Select all
$myProjects = {"Application.aip", "Application_spring.aip", "Application_light.aip"}
$advinst = new-object -com AdvancedInstaller
function CustomizeProject($myProjectFile)
{
  $proj = $advinst.LoadProject($myProjectFile);
  # do project customization
  $proj.Save()
  $proj.Build()
}
foreach($myProject in $myProjects)
{
  CustomizeProject $myProject
}