0% found this document useful (0 votes)
36 views

STD Out

This document describes a Powershell plugin configuration that is used to compare file differences between two folders and copy any new or updated files to a third destination folder. The plugin runs a Powershell script that gets a list of files in each source folder, compares the files, identifies differences, and then xcopies any different files to the destination folder location.

Uploaded by

peter
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
36 views

STD Out

This document describes a Powershell plugin configuration that is used to compare file differences between two folders and copy any new or updated files to a third destination folder. The plugin runs a Powershell script that gets a list of files in each source folder, compares the files, identifies differences, and then xcopies any different files to the destination folder location.

Uploaded by

peter
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 12

================================================================================

plugin: Powershell, id: com.urbancode.air.plugin.Powershell, version: 3


plugin command: 'cmd' '/C' '"D:\urbandeploy-inst\agent\opt\groovy-1.8.8\bin\
groovy.bat -cp "D:\urbandeploy-inst\agent\var\plugins\
com.urbancode.air.plugin.Powershell_3_6d2dfe53fbaf2bc531ded80e6d7ae7a96e9b5fee0df5d
96f54daa9cf39ae91fe\classes;D:\urbandeploy-inst\agent\var\plugins\
com.urbancode.air.plugin.Powershell_3_6d2dfe53fbaf2bc531ded80e6d7ae7a96e9b5fee0df5d
96f54daa9cf39ae91fe\lib\shell.jar;D:\urbandeploy-inst\agent\var\plugins\
com.urbancode.air.plugin.Powershell_3_6d2dfe53fbaf2bc531ded80e6d7ae7a96e9b5fee0df5d
96f54daa9cf39ae91fe\lib\CommonsUtil.jar;D:\urbandeploy-inst\agent\var\plugins\
com.urbancode.air.plugin.Powershell_3_6d2dfe53fbaf2bc531ded80e6d7ae7a96e9b5fee0df5d
96f54daa9cf39ae91fe\lib\log4j.jar;D:\urbandeploy-inst\agent\var\plugins\
com.urbancode.air.plugin.Powershell_3_6d2dfe53fbaf2bc531ded80e6d7ae7a96e9b5fee0df5d
96f54daa9cf39ae91fe\lib\NativeProcess.jar;D:\urbandeploy-inst\agent\var\plugins\
com.urbancode.air.plugin.Powershell_3_6d2dfe53fbaf2bc531ded80e6d7ae7a96e9b5fee0df5d
96f54daa9cf39ae91fe\lib\WinAPI.jar" D:\urbandeploy-inst\agent\var\plugins\
com.urbancode.air.plugin.Powershell_3_6d2dfe53fbaf2bc531ded80e6d7ae7a96e9b5fee0df5d
96f54daa9cf39ae91fe\run_powershell_script.groovy D:\urbandeploy-inst\agent\var\
temp\logs402049898721341236\input.props D:\urbandeploy-inst\agent\var\temp\
logs402049898721341236\output.props"'
working directory: D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT
properties:
PLUGIN_INPUT_PROPS=D:\urbandeploy-inst\agent\var\temp\logs402049898721341236\
input.props
PLUGIN_OUTPUT_PROPS=D:\urbandeploy-inst\agent\var\temp\logs402049898721341236\
output.props
commandPath=
outputFile=
runAsDaemon=false
scriptBody=# Find Differnce between two tags
mode con:cols=150 lines=100

# Variables
$DateStamp = get-date -uformat "%Y-%m-%d_%H-%M-%S"
$Folder1 = "D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\
VCR_CORE_INST_APR2021_10"
$Folder2 = "D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\
VCR_CORE_INST_APR2021_5"
$Folder3 = "D:\VRS\VDeveloper\Java\ExpData"
$Folder3_path = "D:\VRS\VDeveloper\Java\ExpData\Batch_1"

# Take backup for old files


#Rename-Item $Folder3\Batch_1 $Folder3\Batch_1_$DateStamp

#robocopy "D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\
VCR_CORE_INST_APR2021_5" "D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\
VCR_CORE_INST_APR2021_10" /MIR /IS /L /R:3 /W:3 >"D:\urbandeploy-inst\agent\var\
work\VCR_Core_INST\UAT\test1.txt"
#Select-String -Path test1.txt -Pattern "Newer", "New File"> "test2.txt"
#Get-Content test2.txt | %{ $_.Split('')[-1]; } > test3.txt
#( Get-Content test3.txt ) | Where { $_ } | Set-Content test3.txt

$SourceDocs = Get-ChildItem -Recurse -Path "D:\urbandeploy-inst\agent\var\work\\


VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_10\" | foreach {Get-FileHash -Path
$_.FullName}
$DestDocs = Get-ChildItem -Recurse -Path "D:\urbandeploy-inst\agent\var\work\\
VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\" | foreach {Get-FileHash -Path
$_.FullName}
(Compare-Object -ReferenceObject $SourceDocs -DifferenceObject $DestDocs -Property
hash -PassThru).Path > log.txt
$data = Get-Content .\log.txt
#Remove-Item .\final.txt
foreach($line in $data){
if($line -notmatch "VCR_CORE_INST_APR2021_10"){
$line | Out-File -FilePath final.txt -Append -Encoding ascii
}
}
Get-Content final.txt | %{ $_.Split('\')[-1]; } > filelist.txt

foreach ($file in Get-Content filelist.txt)


{
# do something with $file
Get-ChildItem -Path "VCR_CORE_INST_APR2021_5" -Filter $file -Recurse > ab1.txt
Select-String -Path ab1.txt -Pattern "Directory" > ab2.txt
( Get-Content ab2.txt ) | Where { $_ } | Set-Content ab2.txt

$var=Get-Content ab2.txt | %{ $_.Split('\')[-1]; }


#cd "D:\New folder\VER-INSTT_OCT-16_1.2.0\Batch_1"
echo $var\$file
xcopy "D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\
VCR_CORE_INST_APR2021_5\Batch_1\$var\$file" "$Folder3_path\$var\" /e /s /y /f /i

}
scriptFile=
threadMode=default
environment:
AGENT_HOME=D:\urbandeploy-inst\agent
AH_AUTH_TOKEN=****
AH_WEB_URL=https://inst.urbandeploy.uk.fid-intl.com:8443
AUTH_TOKEN=****
DS_AUTH_TOKEN=****
DS_SYSTEM_ENCODING=Cp1252
JAVA_OPTS=-Dfile.encoding=Cp1252 -Dconsole.encoding=Cp1252
PLUGIN_HOME=D:\urbandeploy-inst\agent\var\plugins\
com.urbancode.air.plugin.Powershell_3_6d2dfe53fbaf2bc531ded80e6d7ae7a96e9b5fee0df5d
96f54daa9cf39ae91fe
UD_DIALOGUE_ID=515a218c-5142-4202-a866-0e1fc16332b9
WE_ACTIVITY_ID=17912786-8a8e-efb5-0ccd-a812cb3129ef
================================================================================

command line: [powershell.exe, -NonInteractive, -ExecutionPolicy, unrestricted, -


NoLogo, -NoProfile, &, 'C:\windows\TEMP\tmp1398501643102696256.ps1', 'D:\
urbandeploy-inst\agent\var\temp\logs402049898721341236\input.props', 'D:\
urbandeploy-inst\agent\var\temp\logs402049898721341236\output.props']
script content:
-------------------------------
# Find Differnce between two tags
mode con:cols=150 lines=100

# Variables
$DateStamp = get-date -uformat "%Y-%m-%d_%H-%M-%S"
$Folder1 = "D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\
VCR_CORE_INST_APR2021_10"
$Folder2 = "D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\
VCR_CORE_INST_APR2021_5"
$Folder3 = "D:\VRS\VDeveloper\Java\ExpData"
$Folder3_path = "D:\VRS\VDeveloper\Java\ExpData\Batch_1"

# Take backup for old files


#Rename-Item $Folder3\Batch_1 $Folder3\Batch_1_$DateStamp

#robocopy "D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\
VCR_CORE_INST_APR2021_5" "D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\
VCR_CORE_INST_APR2021_10" /MIR /IS /L /R:3 /W:3 >"D:\urbandeploy-inst\agent\var\
work\VCR_Core_INST\UAT\test1.txt"
#Select-String -Path test1.txt -Pattern "Newer", "New File"> "test2.txt"
#Get-Content test2.txt | %{ $_.Split('')[-1]; } > test3.txt
#( Get-Content test3.txt ) | Where { $_ } | Set-Content test3.txt

$SourceDocs = Get-ChildItem -Recurse -Path "D:\urbandeploy-inst\agent\var\work\\


VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_10\" | foreach {Get-FileHash -Path
$_.FullName}
$DestDocs = Get-ChildItem -Recurse -Path "D:\urbandeploy-inst\agent\var\work\\
VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\" | foreach {Get-FileHash -Path
$_.FullName}
(Compare-Object -ReferenceObject $SourceDocs -DifferenceObject $DestDocs -Property
hash -PassThru).Path > log.txt
$data = Get-Content .\log.txt
#Remove-Item .\final.txt
foreach($line in $data){
if($line -notmatch "VCR_CORE_INST_APR2021_10"){
$line | Out-File -FilePath final.txt -Append -Encoding ascii
}
}
Get-Content final.txt | %{ $_.Split('\')[-1]; } > filelist.txt

foreach ($file in Get-Content filelist.txt)


{
# do something with $file
Get-ChildItem -Path "VCR_CORE_INST_APR2021_5" -Filter $file -Recurse > ab1.txt
Select-String -Path ab1.txt -Pattern "Directory" > ab2.txt
( Get-Content ab2.txt ) | Where { $_ } | Set-Content ab2.txt

$var=Get-Content ab2.txt | %{ $_.Split('\')[-1]; }


#cd "D:\New folder\VER-INSTT_OCT-16_1.2.0\Batch_1"
echo $var\$file
xcopy "D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\
VCR_CORE_INST_APR2021_5\Batch_1\$var\$file" "$Folder3_path\$var\" /e /s /y /f /i

}
-------------------------------
working directory: D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT
===============================
command output:
COMPONENTS\COMPONENT_CD001IB.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD001IB.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD001IB.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD004.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD004.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD004.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD005.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD005.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD005.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD006.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD006.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD006.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD007.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD007.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD007.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD008.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD008.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD008.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD009.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD009.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD009.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD011.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD011.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD011.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD013.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD013.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD013.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD017.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD017.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD017.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD018.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD018.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD018.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD019.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD019.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD019.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD053_QIR.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD053_QIR.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD053_QIR.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD119.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD119.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD119.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD119_QIR.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD119_QIR.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD119_QIR.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD1235.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD1235.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD1235.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD1236.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD1236.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD1236.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD1237.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD1237.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD1237.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD1238.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD1238.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD1238.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD1239.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD1239.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD1239.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD1240.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD1240.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD1240.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD1241.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD1241.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD1241.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD1242.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD1242.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD1242.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD1243.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD1243.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD1243.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD1244.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD1244.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD1244.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD1245.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD1245.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD1245.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD1247.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD1247.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD1247.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD1248.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD1248.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD1248.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD1249.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD1249.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD1249.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD1250.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD1250.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD1250.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD157.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD157.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD157.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD161.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD161.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD161.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD161E_BESPOKE.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD161E_BESPOKE.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD161E_BESPOKE.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD161_BESPOKE.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD161_BESPOKE.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD161_BESPOKE.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD189.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD189.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD189.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD2100.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD2100.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD2100.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD2101.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD2101.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD2101.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD2102.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD2102.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD2102.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD2103.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD2103.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD2103.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD2104.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD2104.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD2104.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD2105.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD2105.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD2105.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD2105A.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD2105A.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD2105A.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD2105R.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD2105R.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD2105R.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD2106.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD2106.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD2106.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD2107.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD2107.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD2107.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD2108.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD2108.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD2108.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD2109R.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD2109R.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD2109R.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD2110.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD2110.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD2110.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD2111.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD2111.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD2111.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD2112.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD2112.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD2112.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD2112C.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD2112C.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD2112C.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD2113.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD2113.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD2113.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD2114.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD2114.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD2114.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD2115.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD2115.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD2115.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD2115A.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD2115A.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD2115A.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD2116.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD2116.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD2116.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD2116A.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD2116A.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD2116A.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD217.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD217.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD217.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD401B.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD401B.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD401B.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD404.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD404.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD404.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD428.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD428.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_CD428.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD915_MIR_BS.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD915_MIR_BS.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD915_MIR_BS.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD916_MIR_BS.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD916_MIR_BS.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD916_MIR_BS.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD917_MIR_BS.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD917_MIR_BS.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD917_MIR_BS.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD918_MIR_BS.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD918_MIR_BS.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD918_MIR_BS.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD927_QIR.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD927_QIR.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD927_QIR.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD928_MIR_BS.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD928_MIR_BS.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD928_MIR_BS.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD928_QIR.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD928_QIR.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD928_QIR.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD929_MIR_BS.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD929_MIR_BS.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD929_MIR_BS.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD929_QIR.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD929_QIR.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD929_QIR.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD933_MIR_BS.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD933_MIR_BS.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD933_MIR_BS.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD934_MIR_BS.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD934_MIR_BS.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD934_MIR_BS.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD934_QIR.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD934_QIR.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD934_QIR.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD935_MIR_BS.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD935_MIR_BS.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD935_MIR_BS.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD936_MIR_BS.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD936_MIR_BS.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD936_MIR_BS.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD961_MIR_BS.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD961_MIR_BS.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD961_MIR_BS.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD961_QIR.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD961_QIR.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD961_QIR.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD963_MIR_BS.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD963_MIR_BS.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD963_MIR_BS.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD964_MIR_BS.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD964_MIR_BS.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD964_MIR_BS.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD968A_QIR.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD968A_QIR.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD968A_QIR.xml
1 File(s) copied
COMPONENTS\COMPONENT_CD968_QIR.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_CD968_QIR.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\COMPONENTS\COMPONENT_CD968_QIR.xml
1 File(s) copied
COMPONENTS\COMPONENT_GENERIC_COMPLIANCE_TEXT.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_GENERIC_COMPLIANCE_TEXT.xml -> D:\VRS\VDeveloper\Java\
ExpData\Batch_1\COMPONENTS\COMPONENT_GENERIC_COMPLIANCE_TEXT.xml
1 File(s) copied
COMPONENTS\COMPONENT_MIRCD5.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_MIRCD5.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_MIRCD5.xml
1 File(s) copied
COMPONENTS\COMPONENT_MIRCD6.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_MIRCD6.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\
COMPONENTS\COMPONENT_MIRCD6.xml
1 File(s) copied
COMPONENTS\COMPONENT_MIR___BS___COMMON_HEADER__CD920_.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_MIR___BS___COMMON_HEADER__CD920_.xml -> D:\VRS\
VDeveloper\Java\ExpData\Batch_1\COMPONENTS\
COMPONENT_MIR___BS___COMMON_HEADER__CD920_.xml
1 File(s) copied
COMPONENTS\COMPONENT_QIR-REPORT_COMP_CD961_MIR_BS_10907557.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\COMPONENTS\COMPONENT_QIR-REPORT_COMP_CD961_MIR_BS_10907557.xml -> D:\VRS\
VDeveloper\Java\ExpData\Batch_1\COMPONENTS\COMPONENT_QIR-
REPORT_COMP_CD961_MIR_BS_10907557.xml
1 File(s) copied
ENTITIES\ENTITY_BESPOKE_MONTHLY_CLIENT.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\ENTITIES\ENTITY_BESPOKE_MONTHLY_CLIENT.xml -> D:\VRS\VDeveloper\Java\
ExpData\Batch_1\ENTITIES\ENTITY_BESPOKE_MONTHLY_CLIENT.xml
1 File(s) copied
ENTITIES\ENTITY_BESPOKE_QUARTERLY_CLIENT.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\ENTITIES\ENTITY_BESPOKE_QUARTERLY_CLIENT.xml -> D:\VRS\VDeveloper\Java\
ExpData\Batch_1\ENTITIES\ENTITY_BESPOKE_QUARTERLY_CLIENT.xml
1 File(s) copied
REPORTS\REPORT_GIC_QUARTERLY_RPT.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\REPORTS\REPORT_GIC_QUARTERLY_RPT.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\REPORTS\REPORT_GIC_QUARTERLY_RPT.xml
1 File(s) copied
REPORTS\REPORT_MONTHLY_INVESTMENT_REVIEW_BESPOKE.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\REPORTS\REPORT_MONTHLY_INVESTMENT_REVIEW_BESPOKE.xml -> D:\VRS\VDeveloper\
Java\ExpData\Batch_1\REPORTS\REPORT_MONTHLY_INVESTMENT_REVIEW_BESPOKE.xml
1 File(s) copied
RSTS\RST_MIRRS0040_EUR.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\RSTS\RST_MIRRS0040_EUR.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\RSTS\
RST_MIRRS0040_EUR.xml
1 File(s) copied
RSTS\RST_RS921_BESPOKE_CLIENT_MONTHLY.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\RSTS\RST_RS921_BESPOKE_CLIENT_MONTHLY.xml -> D:\VRS\VDeveloper\Java\
ExpData\Batch_1\RSTS\RST_RS921_BESPOKE_CLIENT_MONTHLY.xml
1 File(s) copied
RSTS\RST_RS922_BESPOKE_CLIENT_QUARTERLY.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\RSTS\RST_RS922_BESPOKE_CLIENT_QUARTERLY.xml -> D:\VRS\VDeveloper\Java\
ExpData\Batch_1\RSTS\RST_RS922_BESPOKE_CLIENT_QUARTERLY.xml
1 File(s) copied
RSTS\RST_RS926_MIR_BS.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\RSTS\RST_RS926_MIR_BS.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\RSTS\
RST_RS926_MIR_BS.xml
1 File(s) copied
RSTS\RST_RS929_MIR_BS.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\RSTS\RST_RS929_MIR_BS.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\RSTS\
RST_RS929_MIR_BS.xml
1 File(s) copied
RSTS\RST_RS931_MIR_BS.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\RSTS\RST_RS931_MIR_BS.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\RSTS\
RST_RS931_MIR_BS.xml
1 File(s) copied
RSTS\RST_RS931_MIR_BS_BAR_CHART.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\RSTS\RST_RS931_MIR_BS_BAR_CHART.xml -> D:\VRS\VDeveloper\Java\ExpData\
Batch_1\RSTS\RST_RS931_MIR_BS_BAR_CHART.xml
1 File(s) copied
RSTS\RST_RS933_MIR_BS.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\RSTS\RST_RS933_MIR_BS.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\RSTS\
RST_RS933_MIR_BS.xml
1 File(s) copied
RSTS\RST_RS943_MIR_BS.xml
D:\urbandeploy-inst\agent\var\work\VCR_Core_INST\UAT\VCR_CORE_INST_APR2021_5\
Batch_1\RSTS\RST_RS943_MIR_BS.xml -> D:\VRS\VDeveloper\Java\ExpData\Batch_1\RSTS\
RST_RS943_MIR_BS.xml
1 File(s) copied
===============================
command exit code: 0

Script executed successfully.

You might also like