What do you guys recommend for this...

I have a local folder ("c:\info\files") I want copied to a networked
backup directory everytime a specific user (in this case user "Field")
logs into my domain using only the workstation named "Powerbox".
I created a script, and have it set in AD to run everytime Field logs
in... but he may not always login from the "Powerbox" machine therefore
the local folder c:\info\files won't be available.


What do you guys think... execute the script elsewhere, or add a piece
of code in the script to recognize whether it's being ran from the
Powerbox machine.

ps, I don't want to run the script locally on Powerbox.
Thx
Field

****FolderBackup.vbs**********************
Dim objFolderCopy

strFolderPath = "C:\info\files"
strFolderDestination = "S:\backup\field"

set objFolderCopy = CreateObject("Scripting.FileSystemObject")
objFolderCopy.CopyFolder strFolderPath, strFolderDestination, true


WScript.Quit
**********************************************