Is there a way for me to copy files from a network resource to a local PC via a login script that will allow me to copy files to a directory that is protected? For example...The company I work for runs mutliple call centers. We are trying to protect our users by giving them minimum privleges to their PC's. However sometimes when we roll out new versions of software that are built in house we need to copy files from a network resource to their local PC. Everyone has read access to the network directory.

This is what I am currently trying to do:

If not exist(C:\SoftwareName\FileName)
use x: \delete
use x: \\servername\directory /USER: /PASSWORD:
copy x:\*.* c:\softwarename
copy x:\*.* c:\program files\directoryname
use x: \delete
endif

This might be way off base but some PLEASE let me know how to do this if it is possible to copy folders to a protected directory. As of right now the script I am trying to run doesn't error out but it doesn't copy anything either. I know how to do this ina a simple DOS batch script. I am trying to figure out how to do this with kixtart.

Thanks in advance for any replies.