@echo off
cls
set Minutes=4
if not (%1)==() set Minutes=%1
:: get the absolute minute NOW
:: Alternatively, you can use the /A parm and the /T parm
:: to start from the date and time of your choice.
Fdate /Ff /ominute# /vAbsMin
:: add a certain number of minutes
Fdate /f#add /a%AbsMin% /b%Minutes% /VNewMin
:: display the results
Fdate /Ff /iminute# /Ofull /a%AbsMin% /p"We add %Minutes% minutes to "
Fdate /Ff /iminute# /Ofull /a%NewMin% /p"producing: "
set Minutes=
set AbsMin=
set NewMin=
echo.
:endit