Desde que você disse que poderíamos usar o software, eu fiz um despertador de 3 peças. Você pode fazer o download ou copiar + colar o código:
Startup.vbs
este será o arquivo que você colocar na seção de inicialização do menu Iniciar (painel Todos os programas)
Set oShell = CreateObject ("Wscript.Shell")
Dim strArgs
strArgs = "cmd /c $LOCATION$"
oShell.Run strArgs, 0, false
Altere $ LOCATION $ com a localização do terceiro arquivo,
Popup.vbs
este será o arquivo com o lembrete
lol=msgbox("MESSAGE.",0,"REMINDER!")
Alterar MENSAGEM. com o corpo e LEMBRETE! com o título
Alarm.bat
este será o arquivo que verifica a data e a hora e executa Popup.vbs
@ECHO OFF
setlocal enabledelayedexpansion
::====SET TABLE====::
SET ACtime=1717
SET ACday=MON
SET ACmsgloc=C:\Users\Jeremi\Desktop\FaceCensorApp.vbs
::====SET TABLE====::
title Alarm Clock
goto loop
:k
for %%i in (%ACday%) do (
if "%date:~0,3%"=="%%i" goto loop
)
goto k
====HELP====
HOW TO USE
Set the variables with the set table.
RULES
1. ACtime is in 24-hr format. Remeber to put just digits no other characters.
2. ACday is the FIRST 3 letters of the day, no other characters. Monday=MON Tuesday=Tue Wednesday=WED (You get the point?)
3. ACmsgloc is the LOCATION of the reminder file. Enter the FULL path (like C:\Users\Joey\Desktop\Popup.vbs
RULES
====EXIT====
:loop
set mytime=%time:~0,2%%time:~3,2%
if "%mytime%" EQU "%ACtime%" (
start %ACmsgloc%
exit )
goto loop
endlocal
DOWNLOAD: link