Using Move Command to move folder

(imported topic written by Efairrell91)

One of our analysts is trying to move a folder with the move command. This is what he has:

// create the folder if it does not exist

if {not exists folder “C:\WINDOWS\software_install\GW703”}

dos mkdir C:\WINDOWS\software_install\GW703

// delete the install folder if it already exists

delete “C:\WINDOWS\software_install\GW703\win32”

//copy the install folder to local software repository

move "__Download\win32 “{pathname of windows folder & “\software_install\GW703\win32”}”

He also tried the move with specifying C:\Windows instead of the substitution. The following command works in the fixlet debugger:

move "C:\Program Files\BigFix Enterprise\Bes Console\Fixlet Debugger__BesData__Download\win32 “C:\WINDOWS\software_install\GW703\win32”

Any ideas on what we’re doing wrong here?