Copying directory from one server to another is there a limitation? No errors on screen or under the event viewer.
destination server is v2012 box.
Oracle = @{
Setup32 = "\\dfs.com\files\apps\Config\Oracle19\x86-32\"
Setup64 = "\\dfs.com\files\apps\Config\Oracle19\x86-64\response\"
LDAP = "\\dfs.com\files\apps\Config\Oracle\ldap.ora"
SQLNet = "\\dfs.com\files\apps\Config\Oracle\sqlnet.ora.template"
TNSNames = "\\dfs.com\files\apps\Config\Oracle\tnsnames.ora"
}
node $AllNodes.Where{$_.OracleSetup32 -eq "Present"}.NodeName
{
File Oracle_Setup32
{
DestinationPath = "C:\Installers\Client32"
SourcePath = $ConfigurationData.Oracle.Setup32
Type = "Directory"
Recurse = "True"
Ensure = "Present"
}
}
node $AllNodes.Where{$_.OracleSetup64 -eq "Present"}.NodeName
{
File Oracle_Setup64
{
DestinationPath = "C:\Installers\Client64"
SourcePath = $ConfigurationData.Oracle.Setup64
Type = "Directory"
Recurse = "True"
Ensure = "Present"
}
}
}
the copy works fine for the 32bit client