Simple Reminder
This a VBS Script where you can add a Message and the script will notify you after a certain amount of time with a custom Message
Download the script here
or copy it here:
' Shadowdara MIT 2025
'
' Simple Reminder Message with a Timer
'
' More Infos:
' https://shadowdara.github.io/blog/2025/11/22/reminder-script
timeSec = InputBox("In how many Seconds do you want to be remembered?", "Timer")
msg = InputBox("Message for the Reminder", "Remindertext")
If IsNumeric(timeSec) And timeSec > 0 Then
WScript.Sleep timeSec * 1000
MsgBox "Time is over" & vbCrLf & vbCrLf & msg, 64, "Reminder"
Else
MsgBox "Please Enter a Valid Number.", 48, "Error"
End If