I have a simple script to copy files from a mapped drive to the local c: drive. When I use 4.60 the files are not copied to the proper dir. Instead they are copied to the root of c: When I use 4.00 RC1 (which is what we are using now in the company) the files are copied properly. I can't figure out what is going on. Is there something bloody obvious that I'm missing?

 Code:
$dest = "C:\temp"
if ingroup ("IS") and exist ("$dest")
	copy "G:\Visual Studio\SSIS Templates\*" "$dest"
	? "Version:     " + @kix
endif

$dest will actually be quite long with many spaces which is why I put it in a variable. There are only 2 files in the source directory.
The only way I can get 4.60 to work is to specify the full path in the source and destination.
This code will work since we are still on 4.00 RC1, but I would like to make this work with the latest version if we ever roll it out.