Hello
I need to add or64 install files to the local system
the script does the 23bit install but totally ignores the 64 install section
node $AllNodes.Where{$_.Or64 -eq "Present"}.NodeName
{
File Or_Setup64
{
DestinationPath = "C:\Install\Or64"
SourcePath = $ConfigurationData.Oracle.Setup64
Type = "Directory"
Recurse = "True"
Ensure = "Present"
}
node $AllNodes.Where{$_.Or32 -eq "Present"}.NodeName
{
File Or_Setup32
{
DestinationPath = "C:\Install\Or32"
SourcePath = $ConfigurationData.Oracle.Setup32
Type = "Directory"
Recurse = "True"
Ensure = "Present"
}
}
thanks