15 lines
380 B
PowerShell
15 lines
380 B
PowerShell
###ROBOCOPY VHDX VEEAM OVH VERSO TNAS UFFICIO###
|
|
|
|
$hostname = hostname
|
|
$logFile = "C:\Steamware\Log\" + $hostname + "_VeeamVhdxRobocopy.log"
|
|
|
|
#cartella di origine
|
|
$sourceFolder = "W:\ISO\Win\"
|
|
|
|
#file da copiare
|
|
$file = "Windows10_EN_x64.iso"
|
|
|
|
#cartella di destinazione
|
|
$destFolder = "\\10.74.82.201\veeam-ovh-vhdx"
|
|
|
|
robocopy $sourceFolder $destFolder $file /mt /tee /log:$logFile |