Hi Guys,
I’m using the Package resource to install BizTalk using the following basic configuration:
Configuration 'BizTalkInstall'
{
Import-DscResource -ModuleName PSDesiredStateConfiguration
Node localhost
{
$features = $Node.BizTalkFeatures
Package InstallBiztalk
{
Name = "Microsoft BizTalk Server 2016 Developer Edition"
Path = $Node.BizTalkInstallFiles
ProductId = "B084F3A7-3E8F-4E7B-B673-EED1715D28ED"
Arguments = "/CABPATH C:\Install\BtsRedistW2K12R2EN64.cab /QUIET /NORESTART /USERNAME DAN /COMPANYNAME DAN /L `"C:\Install\Logs\Biztalk_InstallLog.txt`" /ADDLOCAL `"$features`""
}
}
}
The install is successful (returns an exit code of 0, the install logfile looks good and the product functions), however the DSC is throwing an error:
The WS-Management service cannot process the request. The WMI service or the WMI provider returned an unknown error: HRESULT 0x80041033 + CategoryInfo : ResourceUnavailable: (root/Microsoft/...gurationManager:String) [], CimException + FullyQualifiedErrorId : HRESULT 0x80041033 + PSComputerName : localhost
Any ideas how I can find out more info as to what is causing this? The Windows Event Logs (Application and DSC Operational) look clean.
Thanks,
Dan