i want to copy IIS logs from multiple app servers and dump them into one place. The script will run at the destination server. Hence, I wrote the script below. However, instead of going through one element in the array at a time, powershell treats everything as 1 element. How can I fix this issue? Any help would be appreciated,.
thanks
$unCA = “\10.101.32.110”, “\10.101.32.111”, “\10.101.32.114”, “\10.101.32.115”, “\10.101.32.116”, “\10.101.32.117”
$unCB = “\10.101.176.110”
$source = “C$\inetpub\logs\LogFiles\W3SVC1*.log”
$destination = "E$"
foreach ($element in $unCA) {
copy-item $uncA$source $uncB$destination
}