У меня есть несколько сценариев частичного DSC, которые используют ресурс среды для установки значения пути. У меня есть два сценария, которые делают это, и после обновления с WMF5.0 до WMF5.1 я получаю следующую ошибку при запуске DscConfigurations.
VERBOSE: Perform operation 'Invoke CimMethod' with following parameters, ''methodName' = ApplyConfiguration,'className' = MSFT_DSCLocalConfigurationManager,'namespaceName' = root/Microsoft/Windows/DesiredStateConfiguration'.
VERBOSE: An LCM method call arrived from computer MYCOMPUTER with user sid S-1-5-21-1064954374-356710528-937385128-34335.
VERBOSE: [DESTCOMPUTER]: [] Starting consistency engine.
The resources ('[Environment]SetInstantClientPath' and '[Environment]SqlCmdPath') have conflicting values of the following properties: 'Value'. Ensure that their values match. Merging of partial configurations failed. LCM
failed to start desired state configuration manually.
+ CategoryInfo : ResourceExists: (root/Microsoft/...gurationManager:String) [], CimException
+ FullyQualifiedErrorId : MI RESULT 11
+ PSComputerName : DESTCOMPUTER
Один сценарий делает это:
Environment SqlCmdPath {
Name = "Path"
DependsOn = "[Package]InstallSQLServer2012CmdLineUtils_64bit"
Ensure = "Present"
Path = $true
Value = "$env:ProgramFiles\Microsoft SQL Server\110\Tools\Binn"
}
А другой сценарий делает это:
Environment SetInstantClientPath {
Name = "Path"
DependsOn = "[Archive]InstallInstantClientBasic","[Archive]InstallInstantClientSqlplus"
Ensure = "Present"
Path = $true
Value = "$env:SystemDrive\instantclient_11_2"
}
Раньше это успешно работало с WMF5.0
Что-то изменилось с WMF5.1?
У вас есть два ресурса среды (переменные) с одинаковым значением параметра Name. Это может вызвать конфликт, когда движок создает переменную среды. Я рекомендую вам изменить что-то вроде этого:
Environment SqlCmdPath {
Name = "SqlCmdPath"
DependsOn = "[Package]InstallSQLServer2012CmdLineUtils_64bit"
Ensure = "Present"
Path = $true
Value = "$env:ProgramFiles\Microsoft SQL Server\110\Tools\Binn"
}
Environment SetInstantClientPath {
Name = "SetInstantClientPath"
DependsOn = "[Archive]InstallInstantClientBasic","[Archive]InstallInstantClientSqlplus"
Ensure = "Present"
Path = $true
Value = "$env:SystemDrive\instantclient_11_2"
}
https://msdn.microsoft.com/en-us/powershell/dsc/environmentresource
Просто быстрое обновление, но в настоящее время в MSFT есть запрос по этой конкретной проблеме ...