Posts

Showing posts with the label batch

Recurring AT scheduling using VBS and batch files.

Heres the text of a post I was involved in over at m.p.scripting.vbscript. It relates to the process by which you can create a scheduled task that repeats itself more than one time per day on a regular schedule... ok, now we have three files.... To use this place all three files in the same location. Call login.vbs in your login script instead of the .bat make sure you delete this temp file before retrying this procedure... ( or when you have to re-create the task using login.vbs ) c:\>del %temp%\Done.yet Send your cashier check to : (just kidding) D. login.vbs Const Hide = 0 : Dim VBS, ACT, path Function GetPath()   path = WScript.ScriptFullName   GetPath = Left (path, InstrRev (path, "\" )) End Function Set Act = CreateObject ( "Wscript.Shell" ) VBS = trim (GetPath) & "\new4.bat """ & trim (GetPath) & "\"" CHECKME" Act.Run(VBS),Hide, True normal.vbs Const Hide = ...