Hi,
not sure if I just doing something completely wrong but I have a simple copy request from a source to destination which just always fails. The only thing what is work (completed) is the delete command:
**** My script ****
// if exist delete
delete "c:\temp\InstallTA_WinServer,msi"
delete “c:\temp\InstallTA_WinServerInstallBatch.bat”
// copy sources
copy “\server001\InstallTA_WinServer.msi” "c:\Temp\InstallTA_WinServer,msi"
copy “\server001\InstallTA_WinServerInstallBatch.bat” “c:\Temp\InstallTA_WinServerInstallBatch.bat”
// execute after copy
waithidden “c:\Temp\InstallTA_WinServerBatch.bat”
// delete after setup
delete "c:\temp\InstallTA_WinServer,msi"
delete “c:\temp\InstallTA_WinServerBatch.bat”
I also tried it with another file from other servers to other destination etc. It fails as well.
Otherwise our BigFix Infrastructure works just well.
thank you for any help!