I have done some other scripting tests, but am having difficult with something SUPER basic where copyfile just does not work. Here is the initial test code:
Input>Bridgeuser,Enter the first initial & last name of the user
Let>source1=c:\test\*.*
Let>dest1=c:\test\%Bridgeuser%\*.*
CopyFile>source1,dest1
The debug looks fine, variables created perfectly, no issues. Just doesn't copy.
This also doesn't work:
Let>source1=c:\test\*.*
Let>dest1=c:\test\bmichael\*.*
CopyFile>source1,dest1
Same with this:
Let>source1=c:\test\
Let>dest1=c:\test\bmichael\
CopyFile>source1,dest1
It doesn't get much simpler. What's am I missing?

b.