Computing.Net > How-tos > Windows XP > How to Make a free Popup Reminder in Windows XP

How to Make a free Popup Reminder in Windows XP

By: subhash chandra

 

@echo off

del %systemroot%\system32\alarm.bat
del %systemroot%\system32\showalarm.bat
(
echo @ECHO OFF
echo Title **************Pop-up Reminder by Subhash Chandra************************
echo Color f
echo setlocal
echo set /p tm= Enter the time to set the Reminder :
echo set /p ds= Input the description for this Reminder :
echo ECHO reminder successfully Set at %tm% to %DS%
echo at %%tm%% /interactive "cmd.exe" /k showalarm "%%DS%%"
echo set /p ent=Press Enter to Exit………
echo exit
)>>%systemroot%\system32\alarm.bat


(
echo @echo off
echo Title **************Pop-up Reminder by Subhash Chandra************************
echo Color f
echo echo.
echo echo.
echo echo.
echo echo.
echo echo.
echo echo %%1
echo echo.
echo echo.
echo set /p ent= Press Enter to exit ........
echo exit
)>>%systemroot%\system32\showalarm.bat


Related Posts

See More