Here's another little shell COM trick. The reference is HOWTO: Use the Animated Copy Functions in Windows 95/98/Me (Q151799), but it worked fine on my Windows 2000 PC.

code:
$Source = "E:\Shellcopy.kix"
$Destination = "C:\"
$objShell = CreateObject("Shell.Application")
$objFolder = $objShell.NameSpace($Destination)
$objFolder.CopyHere($Source, "&H0")



[ 18 July 2002, 14:49: Message edited by: Chris S. ]