Hello,
From what it looks like the default script in scriptomatic is only going to show you what you have scheduled and it will only show you what you have scheduled using the AT command not the scheduled task wizard
In order to create a job use the code found in this link or I pasted the code below.
If this works for you then we need to enumerate the computers....let us know if you need help with that
http://msdn2.microsoft.com
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=imper
& strComputer & "\root\cimv2")
Set objNewJob = objWMIService.Get("Win32_S
errJobCreated = objNewJob.Create _
("Notepad.exe", "********012500.000000-420
True, 4, , True, JobId)
If errJobCreated <> 0 Then
Wscript.Echo "Error on task creation"
Else
Wscript.Echo "Task created"
End If
Main Topics
Browse All Topics





by: chandru_solPosted on 2007-11-01 at 18:53:43ID: 20197890
Hope this link will help..........
/en-us/lib rary/aa394 601.aspx
http://msdn2.microsoft.com