Let's have a batch like the following and named as "Test.bat"
********************************************
@ECHO OFF
@MODE CON: COLS=40 LINES=4
@TITLE I am a batch
@CLS
@echo.
@ECHO ^ I am a batch!!!
@echo ^ Please press any key to exit
@pause > nul
********************************************
The vbscript will be the following and named as "Test.vbs"
********************************************
ret = msgbox("Please choose your answer", vbYesNo, "Answer me")
' If ret = Yes
If ret = 6 Then
CreateObject("WScript.Shell").Run "%COMSPEC% /c Test.bat"
' If ret = No
ElseIf ret = 7 Then
WScript.Quit
End If
********************************************
Place these 2 files in the same place and then schuduled it to run on every 36 hours.
Have fun!!!