If you want to preserve the quotes around arguments that contain spaces,
this will work.
For Each a In WScript.Arguments
if instr(a," ") then a=chr(34) & a & chr(34)
args = args & a & " "
Next
WScript.Echo args
Or if you just want to insert non space delimiters between arguments
for n=0 to wscript.arguments.count -2
args = args & wscript.arguments(n) & ";"
Next
args=args & wscript.arguments(n)
WScript.Echo args
--
Crash
I'm smart enough to admit my ignorance.