Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Here are the allowed options for /SC:</p> <pre><code>/SC allows for the following frequency schedules: MINUTE: 1 - 1439 minutes. HOURLY: 1 - 23 hours. DAILY: 1 - 365 days. WEEKLY: weeks 1 - 52. (/D MON,TUE,WED,THU,FRI,SAT,SUN) ONCE: No modifiers. ONSTART: No modifiers. ONLOGON: No modifiers. ONIDLE: No modifiers. MONTHLY: 1 - 12, or FIRST, SECOND, THIRD, FOURTH, LAST, LASTDAY.** </code></pre> <p><em>I keep editing this because I'm not happy with my findings...</em></p> <p>I have looked into the SCHTASKS and noticed that you cannot CHANGE for the schedule through CMD.</p> <p><strong>From <a href="http://technet.microsoft.com/en-us/library/bb490996.aspx" rel="nofollow">technet.microsoft</a></strong> <br>Changes one or more of the following properties of a task.</p> <ul> <li>The program that the task runs (/tr).</li> <li>The user account under which the task runs (/ru).</li> <li>The password for the user account (/rp).</li> </ul> <p>I am going to continue to do some research on this, and hopefully will edit this answer with a workable solution.</p> <p><strong>EDIT</strong><br> If you look in C:\windows\system32\tasks you will find all of your scheduled tasks They're not listed as XML, but they are indeed XML What I think should be done is using either; VBS or C# application dig to each of the following Nodes <br> //Task/Triggers/CalendarTrigger to delete /ScheduleByDay and it's child node /DaysInterval //Task/Triggers/CalendarTrigger to create the following:</p> <pre><code> &lt;?xml version="1.0" encoding="UTF-16"?&gt; -&lt;Task xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task" version="1.2"&gt; +&lt;RegistrationInfo&gt; -&lt;Triggers&gt; -&lt;CalendarTrigger&gt; &lt;StartBoundary&gt;2013-03-13T15:20:00&lt;/StartBoundary&gt; &lt;Enabled&gt;true&lt;/Enabled&gt; -&lt;ScheduleByWeek&gt; -&lt;DaysOfWeek&gt; &lt;Monday/&gt; &lt;Tuesday/&gt; &lt;Wednesday/&gt; &lt;Thursday/&gt; &lt;Friday/&gt; &lt;/DaysOfWeek&gt; &lt;WeeksInterval&gt;1&lt;/WeeksInterval&gt; &lt;/ScheduleByWeek&gt; &lt;/CalendarTrigger&gt; &lt;/Triggers&gt; </code></pre> <p>If anyone can pick up and run with this - I don't think I'll be able to do much with this in the next week.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload