hi,
I am trying to prevent the progress bar and any windows from popping up when
performing:
set shl = createobject("Shell.Applicatioin")
shl.namespace(dest).copyhere shl.namespace(src).items
do until shl.namespace(dest).items.count = shl.namespace(src).items.count
wscript.sleep 100
loop
according to msdn I should be able to use options:
http://msdn2.microsoft.com/en-us/library/bb787866.aspx
I have tried changing above line to the below but it doesn't work.
shl.namespace(dest).copyhere shl.namespace(src).items, &H4
any help appreciated.
thanks.