I am using Package Resource to install the MSIs and EXEs in PowerShell DSC. I am using pull modal. I am triggering the Consistency Job to check the configurations is applied or not for testing.(Unable to wait 30 mins for single testing :) ) Here is My code.
Package OpenDeploy
{
Name = "Interwoven OpenDeploy 6.2.0 Receiver"
Path = "D:\Deployments\Prerequisites\IWOVopendeployRcvr.exe"
ProductId = ''
DependsOn = "[File]CopyPrerequisites"
Ensure = "Present"
Arguments = '/s /f1"D:\Deployments\Prerequisites\setup.iss"'
}
Package InstallMSXML
{
Name = "MSXML4.0"
Path = "D:\Deployments\Prerequisites\msxml4.0_SP3.msi"
ProductId = "XXXX67F1-C11F-4F76-858B-5812ADC83B94"
DependsOn = "[File]CopyPrerequisites"
Ensure = "Present"
}
Package Install_WebSite
{
Name = " Install_WebSite"
Path = "D:\Deployments\Prerequisites\Install_WebSite.msi"
ProductId = "XXXX3F53-982D-470C-9036-1DDFF81EC8B3"
DependsOn = "[File]CopyPrerequisites"
Ensure = "Present"
}
When I run the Job, one package is installing at time. The another package is installing next time and so on. We need to install 10+ installers. If one at time then configuration will take more than a day to configure completely if one installation happen on every 30 Mins.
Is this there anyway to install all packages at once?
Thanks in advance.