I'm trying to use PowerShell DSC to do multiple file copies. My configuration has a list of source/target files that need to be copied. However, the File resource needs to have a unique name with it so that you can do dependencies on the resource.
I'm new to PowerShell and I'm trying to figure out the right format for the DSC script (.ps1) to allow a foreach around the File resource. Currently, my code gives me a "Duplicate Resource Identifier" error since it looks like the File resource isn't getting a unique name.
Configuration (psd1 file):
{
AllNodes = @(
@{
NodeName = '*'
BuildOutputRoot = 'C:\_BuildDrop\'
FilesToCopy = @(
@{
SourcePath = 'C:\_BuildDrop\SampleConfig.xml'
TargetPath = 'C:\SampleCode\SampleConfig.xml'
},
@{
SourcePath = 'C:\_BuildDrop\SampleConfig2.xml'
TargetPath = 'C:\SampleCode\SampleConfig2.xml'
},
Powershell ps1 file for DSC (snippet):
Configuration MachineToolsFilesAndDirectories
{
# Copy files on all machines
Node $AllNodes.NodeName
{
foreach ($FileToCopy in $Node.FilesToCopy)
{
File $FileToCopy$Number
{
Ensure = "Present"
Type = "File"
Recurse = $false
SourcePath = $FileToCopy.SourcePath
DestinationPath = $FileToCopy.TargetPath
}
}
It looks like you never define or change the value of
$Number
so eachFile
resource ends up with the same name. Try something like this.