
Hello Pros, Does anyone know how I can schedule a task on Win Vista so that it reboots every 1.5 hours? I am running an evaluation version of an application, and it stops responding after 1.5hours. A reboot of the computer is required to get it responding again. I am looking at the task scheduler and it doesn't seem to have fine grained control like I have on the Unix scheduler (cron). -- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ "If you have nothing good to say about someone, just shut up!." -- Lucky Dube

Hi Wash This may not be as straighforward in Windows, but there is a work aroudn that you can try. Create a batch file somewhere in your computer (myrestart.bat). You can use Notepad to do this but make sure you save it as a .bat file so that Windows understands it is a batch file. Type this command in the batch file: *shutdown /f /r /t 30* Save you file. The file should just have this one command. This means that the computer will shutdown and restart, running application will be force to close and it will do so in that minutes. Now back to the Tast Scheduler, create tasks to call this batch file every 1.5 hours. You may have to create 16 different tasks for each shutdown/restart cycle. I am not sure there is a custom hours/minutes repeat function in the Windows Task Scheduler. You can also do a script to do what the batch file does but I guess the batch file way is easier. See if it works for you.

On Mon, Sep 7, 2009 at 9:19 AM, Philip Musyoki <pmusyoki@gmail.com> wrote:
Hi Wash
This may not be as straighforward in Windows, but there is a work aroudn that you can try.
Create a batch file somewhere in your computer (myrestart.bat). You can use Notepad to do this but make sure you save it as a .bat file so that Windows understands it is a batch file.
Type this command in the batch file: *shutdown /f /r /t 30*
Save you file. The file should just have this one command.
This means that the computer will shutdown and restart, running application will be force to close and it will do so in that minutes.
Now back to the Tast Scheduler, create tasks to call this batch file every 1.5 hours. You may have to create 16 different tasks for each shutdown/restart cycle. I am not sure there is a custom hours/minutes repeat function in the Windows Task Scheduler.
You can also do a script to do what the batch file does but I guess the batch file way is easier.
See if it works for you.
You know what, Philip? At this rate, I will just manually reboot the computer as required. Not sure why Windows is deficient on this functionality. -- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ "If you have nothing good to say about someone, just shut up!." -- Lucky Dube

Philip, Do you tutor? http://teamtutorials.com/windows-tutorials/schedule-windows-to-automatically... On Mon, Sep 7, 2009 at 9:19 AM, Philip Musyoki <pmusyoki@gmail.com> wrote:
Hi Wash
This may not be as straighforward in Windows, but there is a work aroudn that you can try.
Create a batch file somewhere in your computer (myrestart.bat). You can use Notepad to do this but make sure you save it as a .bat file so that Windows understands it is a batch file.
Type this command in the batch file: *shutdown /f /r /t 30*
Save you file. The file should just have this one command.
This means that the computer will shutdown and restart, running application will be force to close and it will do so in that minutes.
Now back to the Tast Scheduler, create tasks to call this batch file every 1.5 hours. You may have to create 16 different tasks for each shutdown/restart cycle. I am not sure there is a custom hours/minutes repeat function in the Windows Task Scheduler.
You can also do a script to do what the batch file does but I guess the batch file way is easier.
See if it works for you.
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science: http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi: http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general

Create a Reboot.vbs and paste the following in it.. 'Code begin Dim o Set o = createObject("WScript.Shell") WScript.sleep 5400000 'Script is inactive for 90 minutes 'then displays a warning for 30 seconds prompting user to save his/her work before restarting o.Run "shutdown -f -r -t 30 -c 'Windows is rebooting. Save all your work within the time indicated.'" 'Code end Copy the script it to your startup folder or add it's path to a string value in HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run Me. 2009/9/7 Murigi Muraya <mmskunkworks@gmail.com>
Philip,
Do you tutor?
http://teamtutorials.com/windows-tutorials/schedule-windows-to-automatically...
On Mon, Sep 7, 2009 at 9:19 AM, Philip Musyoki <pmusyoki@gmail.com> wrote:
Hi Wash
This may not be as straighforward in Windows, but there is a work aroudn that you can try.
Create a batch file somewhere in your computer (myrestart.bat). You can use Notepad to do this but make sure you save it as a .bat file so that Windows understands it is a batch file.
Type this command in the batch file: *shutdown /f /r /t 30*
Save you file. The file should just have this one command.
This means that the computer will shutdown and restart, running application will be force to close and it will do so in that minutes.
Now back to the Tast Scheduler, create tasks to call this batch file every 1.5 hours. You may have to create 16 different tasks for each shutdown/restart cycle. I am not sure there is a custom hours/minutes repeat function in the Windows Task Scheduler.
You can also do a script to do what the batch file does but I guess the batch file way is easier.
See if it works for you.
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science: http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi: http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science: http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi: http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
-- שִׁמְעוֹן

On Mon, Sep 7, 2009 at 11:43 AM, Simon Mbuthia <simon.mbuthia@gmail.com>wrote:
Create a Reboot.vbs and paste the following in it..
'Code begin Dim o Set o = createObject("WScript.Shell")
WScript.sleep 5400000 'Script is inactive for 90 minutes 'then displays a warning for 30 seconds prompting user to save his/her work before restarting o.Run "shutdown -f -r -t 30 -c 'Windows is rebooting. Save all your work within the time indicated.'"
'Code end
Copy the script it to your startup folder or add it's path to a string value in HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
Hi Simon, This looks promising, but I am lost. Looks like line wraps on my gmail interface is getting me confused with the lines.. I need to try this because creating a .bat file did not work when I tried to import. The Vista scheduler expects an XML file format. -- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ "If you have nothing good to say about someone, just shut up!." -- Lucky Dube

Here is the file attached... Rename to *.vbs 2009/9/7 Odhiambo Washington <odhiambo@gmail.com>
On Mon, Sep 7, 2009 at 11:43 AM, Simon Mbuthia <simon.mbuthia@gmail.com>wrote:
Create a Reboot.vbs and paste the following in it..
'Code begin Dim o Set o = createObject("WScript.Shell")
WScript.sleep 5400000 'Script is inactive for 90 minutes 'then displays a warning for 30 seconds prompting user to save his/her work before restarting o.Run "shutdown -f -r -t 30 -c 'Windows is rebooting. Save all your work within the time indicated.'"
'Code end
Copy the script it to your startup folder or add it's path to a string value in HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
Hi Simon,
This looks promising, but I am lost. Looks like line wraps on my gmail interface is getting me confused with the lines..
I need to try this because creating a .bat file did not work when I tried to import. The Vista scheduler expects an XML file format.
-- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ "If you have nothing good to say about someone, just shut up!." -- Lucky Dube
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science: http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi: http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
-- שִׁמְעוֹן

On Mon, Sep 7, 2009 at 12:14 PM, Simon Mbuthia <simon.mbuthia@gmail.com>wrote:
Here is the file attached...
Rename to *.vbs
Dragging this to the Vista startup folder and restarting should be enough? -- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ "If you have nothing good to say about someone, just shut up!." -- Lucky Dube

*Should* be enough.. Haven't tested it, but it should be fine 2009/9/7 Odhiambo Washington <odhiambo@gmail.com>
On Mon, Sep 7, 2009 at 12:14 PM, Simon Mbuthia <simon.mbuthia@gmail.com>wrote:
Here is the file attached...
Rename to *.vbs
Dragging this to the Vista startup folder and restarting should be enough?
-- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ "If you have nothing good to say about someone, just shut up!." -- Lucky Dube
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science: http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi: http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
-- שִׁמְעוֹן

On Mon, Sep 7, 2009 at 1:01 PM, Simon Mbuthia <simon.mbuthia@gmail.com>wrote:
*Should* be enough.. Haven't tested it, but it should be fine
Hi Simon, Nothing is happening so far:-) The machine is not rebooting, yawa! -- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ "If you have nothing good to say about someone, just shut up!." -- Lucky Dube

Did you wait for 90 minutes?, Also check to see that wscript.exe is on your task manager's process list. I'm not sure if the Sleep method has a maximum value that it can take, which could be lower than 5400000 (90 minutes in millisec). 2009/9/7 Odhiambo Washington <odhiambo@gmail.com>
On Mon, Sep 7, 2009 at 1:01 PM, Simon Mbuthia <simon.mbuthia@gmail.com>wrote:
*Should* be enough.. Haven't tested it, but it should be fine
Hi Simon,
Nothing is happening so far:-) The machine is not rebooting, yawa!
-- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ "If you have nothing good to say about someone, just shut up!." -- Lucky Dube
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science: http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi: http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
-- שִׁמְעוֹן

On Mon, Sep 7, 2009 at 3:48 PM, Simon Mbuthia <simon.mbuthia@gmail.com>wrote:
Did you wait for 90 minutes?, Also check to see that wscript.exe is on your task manager's process list. I'm not sure if the Sleep method has a maximum value that it can take, which could be lower than 5400000 (90 minutes in millisec).
I've been waiting since you sent me the attachment. And yes, wscript.exe is there. -- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ "If you have nothing good to say about someone, just shut up!." -- Lucky Dube

How long has it been running for? Can you tell? Maybe 90 minutes aren't over yet? 2009/9/7 Odhiambo Washington <odhiambo@gmail.com>
On Mon, Sep 7, 2009 at 3:48 PM, Simon Mbuthia <simon.mbuthia@gmail.com>wrote:
Did you wait for 90 minutes?, Also check to see that wscript.exe is on your task manager's process list. I'm not sure if the Sleep method has a maximum value that it can take, which could be lower than 5400000 (90 minutes in millisec).
I've been waiting since you sent me the attachment. And yes, wscript.exe is there.
-- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ "If you have nothing good to say about someone, just shut up!." -- Lucky Dube
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science: http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi: http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
-- שִׁמְעוֹן

On Mon, Sep 7, 2009 at 4:08 PM, Simon Mbuthia <simon.mbuthia@gmail.com>wrote:
How long has it been running for? Can you tell? Maybe 90 minutes aren't over yet?
The 90 minutes expired. How do I manually test the script? wscript //x reboot.vbs tells me access is denied.. How do I activate the vbs script in the registry? -- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ "If you have nothing good to say about someone, just shut up!." -- Lucky Dube

Go to the key I showed you, either in HKLM or HKCU depending on whether you want the script to run when anybody is logged on or just yourself, add a string value, name it whatever you want and set its value to the script's path. To test the script, just double click it, then you have to wait for 90 minutes :D 2009/9/7 Odhiambo Washington <odhiambo@gmail.com>
On Mon, Sep 7, 2009 at 4:08 PM, Simon Mbuthia <simon.mbuthia@gmail.com>wrote:
How long has it been running for? Can you tell? Maybe 90 minutes aren't over yet?
The 90 minutes expired. How do I manually test the script? wscript //x reboot.vbs tells me access is denied.. How do I activate the vbs script in the registry?
-- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ "If you have nothing good to say about someone, just shut up!." -- Lucky Dube
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science: http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi: http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
-- שִׁמְעוֹן

Something that was supposed to be so easy is becoming so complex and developing a life of it's own. @Washington Make sure you Anti-Virus has not zapped your script already.

Personally I would not recommend this approach for a couple of reasons: - You'll have a script running that does nothing but still consumes resources for those 90 minutes - Most anti-viruses would make noise about such a script. In fact if I recall correctly there was a virus that would invoke a shut down without any warning - The task scheduler was designed for precisely this sort of thing. - The task scheduler logs its operations so it is easier to debug, test, check if it fired, etc If I were you i would create a schedule for every 90 minutes and then provide the command shutdown the pc immediately as the task (provide 0 as the timeout) On Mon, Sep 7, 2009 at 4:05 PM, Odhiambo Washington <odhiambo@gmail.com>wrote:
On Mon, Sep 7, 2009 at 3:48 PM, Simon Mbuthia <simon.mbuthia@gmail.com>wrote:
Did you wait for 90 minutes?, Also check to see that wscript.exe is on your task manager's process list. I'm not sure if the Sleep method has a maximum value that it can take, which could be lower than 5400000 (90 minutes in millisec).
I've been waiting since you sent me the attachment. And yes, wscript.exe is there.
-- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ "If you have nothing good to say about someone, just shut up!." -- Lucky Dube
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science: http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi: http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general

If it still doesn't work, I have made some modifications to the script. try this version.. should be v. 2.0 final. the other one was 2.0 beta ;-) Remember to change the extension to .vbs Me. 2009/9/7 Odhiambo Washington <odhiambo@gmail.com>
On Mon, Sep 7, 2009 at 1:01 PM, Simon Mbuthia <simon.mbuthia@gmail.com>wrote:
*Should* be enough.. Haven't tested it, but it should be fine
Hi Simon,
Nothing is happening so far:-) The machine is not rebooting, yawa!
-- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ "If you have nothing good to say about someone, just shut up!." -- Lucky Dube
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science: http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi: http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
-- שִׁמְעוֹן

Hi Murigi I don't tutor, actually my work is very far from that. I 'Advise Governments.' At least officially.

On Mon, Sep 7, 2009 at 10:36 AM, Murigi Muraya <mmskunkworks@gmail.com>wrote:
Philip,
Do you tutor?
http://teamtutorials.com/windows-tutorials/schedule-windows-to-automatically...
I saw this when I googled for clues, but it does not solve my problem. I'm using Vista Home Basic and I'd like it to restart after every 1.5 hours (or even every 1 hour). Or, as someone suggested- *shutdown /f /r /t 30 *- can I change the /t 30 to /t 3600 (for 1 hour)?? -- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ "If you have nothing good to say about someone, just shut up!." -- Lucky Dube

The reason you have to combine the batch file with the Task Scheduler is because the maximum time you can set for the shutdown is 600 seconds (10 minutes), otherwise it would have been perfect to set the time to 3600 seconds (1 hour) and call the procedure every time the computer starts. But with Vista, the delay for the shutdown after the command has been invoked can only be a maximum of 10 minutes. So combining scheduling and this, you can simply schedule the task to run every 1 or 1.5 hours. Too much work, but it beats the manual system.

On Mon, Sep 7, 2009 at 12:00 PM, Philip Musyoki <pmusyoki@gmail.com> wrote:
The reason you have to combine the batch file with the Task Scheduler is because the maximum time you can set for the shutdown is 600 seconds (10 minutes), otherwise it would have been perfect to set the time to 3600 seconds (1 hour) and call the procedure every time the computer starts.
But with Vista, the delay for the shutdown after the command has been invoked can only be a maximum of 10 minutes.
So combining scheduling and this, you can simply schedule the task to run every 1 or 1.5 hours.
Too much work, but it beats the manual system.
Let me try to understand and try out Simon's option. Looks like it may be simpler. I just can't wrap my head around the instructions so far.... "Copy the script it to your startup folder or add it's path to a string value in .." - trying that now... but not sure if line wraps has mangled the contents as originally typed
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science: http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi: http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
-- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ "If you have nothing good to say about someone, just shut up!." -- Lucky Dube

Vista has a very capable task scheduler for precisely this kind of thing. You can even set up recurrence patterns http://technet.microsoft.com/en-us/appcompat/aa906020.aspx On Mon, Sep 7, 2009 at 11:54 AM, Odhiambo Washington <odhiambo@gmail.com>wrote:
On Mon, Sep 7, 2009 at 10:36 AM, Murigi Muraya <mmskunkworks@gmail.com>wrote:
Philip,
Do you tutor?
http://teamtutorials.com/windows-tutorials/schedule-windows-to-automatically...
I saw this when I googled for clues, but it does not solve my problem. I'm using Vista Home Basic and I'd like it to restart after every 1.5 hours (or even every 1 hour).
Or, as someone suggested- *shutdown /f /r /t 30 *- can I change the /t 30 to /t 3600 (for 1 hour)??
-- Best regards, Odhiambo WASHINGTON, Nairobi,KE +254733744121/+254722743223 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ "If you have nothing good to say about someone, just shut up!." -- Lucky Dube
_______________________________________________ Skunkworks mailing list Skunkworks@lists.my.co.ke http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks Other services @ http://my.co.ke Other lists ------------- Announce: http://lists.my.co.ke/cgi-bin/mailman/listinfo/skunkworks-announce Science: http://lists.my.co.ke/cgi-bin/mailman/listinfo/science kazi: http://lists.my.co.ke/cgi-bin/mailman/admin/kazi/general
participants (5)
-
Murigi Muraya
-
Odhiambo Washington
-
Philip Musyoki
-
Rad!
-
Simon Mbuthia