Comment Feed:
♦ RSS
Task > Run: "%UserProfile%\Mozilla Firefox\firefox.exe" http://www.mycompany.com/workqueue
Task > Run only if logged on
Schedule > Schedule Task: Daily
Schedule > Start time: 9:00 AM
Schedule > Advanced
Repeat task
Repeat task: Every: 3 minutes
Repeat task: Until: Time: 6:00 PM
OK
OK
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Check that queue!</title>
<script type='text/javascript'>
function timer() {
var minutes = 3;
alert('Yo, JanetLand, check the work queue');
setTimeout("timer()", minutes*60000);
}
</script>
</head>
<body onload='timer()'>
<h1>Hi!</h1>
</body>
</html>