shift

@echo off
echo - %1
shift
echo - %1

> test.bat
-
-

> test.bat a
- a
-

> test.bat a b
- a
- b