Jan 19, 2005 #1 agiddens Technical User Joined Dec 29, 2004 Messages 5 Location GB Hi, I need to VBS for a file copy for a logon script. I need to copy a file from a network share to the local machine everytime a user logs on. Anyone have any idea of the VBS for this?
Hi, I need to VBS for a file copy for a logon script. I need to copy a file from a network share to the local machine everytime a user logs on. Anyone have any idea of the VBS for this?
Feb 2, 2005 #2 jeff69 Technical User Joined Feb 2, 2005 Messages 1 Location GB Set fso=CreateObject("Scripting.FileSystemObject") fso.CopyFile "c:\dir\*.*", "d:\dir\",TRUE Upvote 0 Downvote