Jan 19, 2005 #1 agiddens Technical User Dec 29, 2004 5 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 Feb 2, 2005 1 GB Set fso=CreateObject("Scripting.FileSystemObject") fso.CopyFile "c:\dir\*.*", "d:\dir\",TRUE Upvote 0 Downvote