I am not sure if there is a direct command but you can always use a simple loop and shift to get the result in a variable. Something like:
@echo off
set RESTVAR=
shift
:loop1
if "%1"=="" goto after_loop
set RESTVAR=%RESTVAR% %1
shift
goto loop1
:after_loop
echo %RESTVAR%
Let me know if it helps!