here is a working way to not have skipfiles copied:
Code:
echo Now extracting the following packages...
echo _skip > skipfiles
for /F "usebackq delims=" %%A in ("packages_sorted.txt") do (
echo D|xcopy /D /H /E /C /Y /Q /EXCLUDE:skipfiles %%A %sortedfolder%\%%A >NUL
echo %%A
)