diff --git a/GenericCallUrl/CallUrlExample.ps1 b/Generic/CallUrlExample.ps1 similarity index 100% rename from GenericCallUrl/CallUrlExample.ps1 rename to Generic/CallUrlExample.ps1 diff --git a/Robocopy/RobocopyOvhVeeamVHDX.ps1 b/Robocopy/RobocopyOvhVeeamVHDX.ps1 new file mode 100644 index 0000000..7800823 --- /dev/null +++ b/Robocopy/RobocopyOvhVeeamVHDX.ps1 @@ -0,0 +1,19 @@ +###ROBOCOPY VHDX VEEAM OVH VERSO TNAS UFFICIO### + +$hostname = hostname +$date = Get-Date +$logFile = "C:\Steamware\Scripts\" + $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" + +#Out-File -FilePath $filePath -InputObject $hostname +#Out-File -FilePath $filePath -InputObject $date -Append + +robocopy $sourceFolder $destFolder $file /mt /tee /log:$logFile \ No newline at end of file diff --git a/Generic/TestRobocopy.ps1 b/Robocopy/TestRobocopy.ps1 similarity index 100% rename from Generic/TestRobocopy.ps1 rename to Robocopy/TestRobocopy.ps1