Jump to content

Jay1988

Members
  • Posts

    1
  • Joined

  • Last visited

Everything posted by Jay1988

  1. Do you remove the echo from everywhere, or just the first echo? This is a good tip! My question is, is the script end up looking like this? #1 for /r %%f in (FOLDER.DUPLICATE.$DRIVEBENDER) do if exist %%f ( echo %%f cd "%%f" echo attrib -h -s *.* if exist *.* ( echo move *.* .. ) cd .. echo rd "%%f" ) or like this? #2? for /r %%f in (FOLDER.DUPLICATE.$DRIVEBENDER) do if exist %%f ( %%f cd "%%f" attrib -h -s *.* if exist *.* ( move *.* .. ) cd .. rd "%%f" )
×
×
  • Create New...