I have a script that creates a scheduled Task:
Set ObjShell = CreateObject("WScript.Shell")
objShell.run "AT 3:00 c:\temp\Mail21.vbs"
Set ObjShell = nothing
What I would like to do is to have it scheduled to run 21 days later. In unix you can just use 3:00 + 21 but that obviously wont work here. Any suggestions?
Set ObjShell = CreateObject("WScript.Shell")
objShell.run "AT 3:00 c:\temp\Mail21.vbs"
Set ObjShell = nothing
What I would like to do is to have it scheduled to run 21 days later. In unix you can just use 3:00 + 21 but that obviously wont work here. Any suggestions?