Hello, I am new to vbs and I am trying to copy 'multiple folders' out of a folder called 'voice profiles' into the 'my documents' folder.
I've tried this script I wrote and haven't got the results I've wanted.
dim filesys, tempFile, readFile, fileText, fileVer
On Error Resume Next
'' Open the FileSystemObject
set filesys = CreateObject("Scripting.FileSystemObject")
if (filesys.FileExists("C:\MRPComp") = True) Then
filesys.CopyFolder "L:\Voice Profiles\*", "c:\Documents and Settings\%USERNAME%\My Documents\"
end if