PC Review


Reply
Thread Tools Rate Thread

Add Scheduled Task - feature is missing

 
 
=?Utf-8?B?QW5keSBD?=
Guest
Posts: n/a
 
      10th Apr 2007
Go to Start | Settings | Control Panel (Classic View) | Scheduled Tasks.

The 'Add Scheduled Task' icon is missing. When I right click and select
'New' and select 'Scheduled Task', I get no response.

Would anyone happen to know what I can do to enable/restore this
functionality?
 
Reply With Quote
 
 
 
 
Wesley Vogel
Guest
Posts: n/a
 
      10th Apr 2007
Is the Task Sceduler services listed in Services.msc, set to Automatic and
running?

Open Services...
Start | Run | Type: services.msc | Click OK |
Scroll down to and double click Task Scheduler |
Set the startup type to Automatic | Click Apply |
Click the Start button | When the service starts, click OK |
Close Services

Scheduled Tasks folder missing

Scheduled Tasks icon is missing from Control Panel.
Task Scheduler is missing from services.msc.
Scheduled Tasks missing from Start Menu:
Start Menu\Programs\Accessories\System Tools\Scheduled Tasks

Reinstall Tasks...

Start | Run | Type or paste: %windir%\inf | Click OK |
Scroll down to mstask.inf | Right click mstask.inf and select Install

Then reboot.

To open Sheduled Tasks...
Start | Run | Type: tasks | Click OK

--
Hope this helps. Let us know.

Wes
MS-MVP Windows Shell/User

In news:5BCB6EFC-BD78-4705-8877-(E-Mail Removed),
Andy C <(E-Mail Removed)> hunted and pecked:
> Go to Start | Settings | Control Panel (Classic View) | Scheduled Tasks.
>
> The 'Add Scheduled Task' icon is missing. When I right click and select
> 'New' and select 'Scheduled Task', I get no response.
>
> Would anyone happen to know what I can do to enable/restore this
> functionality?


 
Reply With Quote
 
=?Utf-8?B?QW5keSBD?=
Guest
Posts: n/a
 
      10th Apr 2007
Wesley:

Thank you so much for the response. I gave it a try but I'm still
experiencing the same. The Scheduled Tasks applet appears in the Control
Panel. However, when I open up the folder, I have no ability to Add a new
task (including right clicking and selectin New | Scheduled task.

"Wesley Vogel" wrote:

> Is the Task Sceduler services listed in Services.msc, set to Automatic and
> running?
>
> Open Services...
> Start | Run | Type: services.msc | Click OK |
> Scroll down to and double click Task Scheduler |
> Set the startup type to Automatic | Click Apply |
> Click the Start button | When the service starts, click OK |
> Close Services
>
> Scheduled Tasks folder missing
>
> Scheduled Tasks icon is missing from Control Panel.
> Task Scheduler is missing from services.msc.
> Scheduled Tasks missing from Start Menu:
> Start Menu\Programs\Accessories\System Tools\Scheduled Tasks
>
> Reinstall Tasks...
>
> Start | Run | Type or paste: %windir%\inf | Click OK |
> Scroll down to mstask.inf | Right click mstask.inf and select Install
>
> Then reboot.
>
> To open Sheduled Tasks...
> Start | Run | Type: tasks | Click OK
>
> --
> Hope this helps. Let us know.
>
> Wes
> MS-MVP Windows Shell/User
>
> In news:5BCB6EFC-BD78-4705-8877-(E-Mail Removed),
> Andy C <(E-Mail Removed)> hunted and pecked:
> > Go to Start | Settings | Control Panel (Classic View) | Scheduled Tasks.
> >
> > The 'Add Scheduled Task' icon is missing. When I right click and select
> > 'New' and select 'Scheduled Task', I get no response.
> >
> > Would anyone happen to know what I can do to enable/restore this
> > functionality?

>
>

 
Reply With Quote
 
Pegasus \(MVP\)
Guest
Posts: n/a
 
      10th Apr 2007

"Andy C" <(E-Mail Removed)> wrote in message
news:5BCB6EFC-BD78-4705-8877-(E-Mail Removed)...
> Go to Start | Settings | Control Panel (Classic View) | Scheduled Tasks.
>
> The 'Add Scheduled Task' icon is missing. When I right click and select
> 'New' and select 'Scheduled Task', I get no response.
>
> Would anyone happen to know what I can do to enable/restore this
> functionality?


You might have insufficient access rights to the folder
c:\windows\tasks. Give yourself full read/write rights!


 
Reply With Quote
 
=?Utf-8?B?QW5keSBD?=
Guest
Posts: n/a
 
      11th Apr 2007
Pegasus

Thank you for your response.

You might have insufficient access rights to the folder
c:\windows\tasks. Give yourself full read/write rights!


I gave this a try. The problem I ran into is that the Tasks folder only
displays the General Tab. The parent folder is the Windows Folder of which I
should, as a local administrator, have rights to.

 
Reply With Quote
 
Pegasus \(MVP\)
Guest
Posts: n/a
 
      11th Apr 2007

"Andy C" <(E-Mail Removed)> wrote in message
news:4533D2DC-876C-403B-B862-(E-Mail Removed)...
> Pegasus
>
> Thank you for your response.
>
> You might have insufficient access rights to the folder
> c:\windows\tasks. Give yourself full read/write rights!
>
>
> I gave this a try. The problem I ran into is that the Tasks folder only
> displays the General Tab. The parent folder is the Windows Folder of

which I
> should, as a local administrator, have rights to.
>


Run these commands from a Command Prompt:
cacls c:\windows\ta* (to check the permissions)
cacls c:\windows\tasks /e /t /g everyone:F (to set them)


 
Reply With Quote
 
=?Utf-8?B?QW5keSBD?=
Guest
Posts: n/a
 
      11th Apr 2007
Pegasus

I applied your settings. I rebooted after I applied the settings. I am
still experiencing the same issue.



> Run these commands from a Command Prompt:
> cacls c:\windows\ta* (to check the permissions)
> cacls c:\windows\tasks /e /t /g everyone:F (to set them)
>
>
>

 
Reply With Quote
 
Wesley Vogel
Guest
Posts: n/a
 
      14th Apr 2007
See if this key exists...
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Task Scheduler5.0

If it does, see this...
How to prevent a user from running Task Scheduler in Windows
http://support.microsoft.com/kb/305612

Prohibit New Task Creation Policy...
A value of 1 removes the Add Scheduled Task item that starts the New Task
wizard. Also, the system does not respond when users try to move, paste, or
drag programs or documents into the Scheduled Tasks folder.

HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Task Scheduler5.0
Value Name: Task Creation
Data Type: REG_DWORD
Value Data: 0 or 1
0 (or not in the registry) = The policy is disabled or not configured. The
user can create new tasks.
1 = The policy is enabled. The user cannot create new tasks.

Task Creation
HKLM\SOFTWARE\Policies\Microsoft\Windows\Task Scheduler5.0
http://www.microsoft.com/technet/pro....mspx?mfr=true

--
Hope this helps. Let us know.

Wes
MS-MVP Windows Shell/User

In news:CF20A24A-9357-4BE2-A1C7-(E-Mail Removed),
Andy C <(E-Mail Removed)> hunted and pecked:
> Pegasus
>
> I applied your settings. I rebooted after I applied the settings. I am
> still experiencing the same issue.
>
>
>
>> Run these commands from a Command Prompt:
>> cacls c:\windows\ta* (to check the permissions)
>> cacls c:\windows\tasks /e /t /g everyone:F (to set them)


 
Reply With Quote
 
Wesley Vogel
Guest
Posts: n/a
 
      15th Apr 2007
That should have been.

Scheduled Tasks Add Scheduled Task Missing From

See if one of these keys exists...
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Task Scheduler5.0
and/or
HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Task Scheduler5.0

If either one of both does, see this...
How to prevent a user from running Task Scheduler in Windows
http://support.microsoft.com/kb/305612

Prohibit New Task Creation Policy...
A value of 1 removes the Add Scheduled Task item that starts the New Task
wizard. Also, the system does not respond when users try to move, paste, or
drag programs or documents into the Scheduled Tasks folder.

HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Task Scheduler5.0
and/or
HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Task Scheduler5.0
Value Name: Task Creation
Data Type: REG_DWORD
Value Data: 0 or 1
0 (or not in the registry) = The policy is disabled or not configured. The
user can create new tasks.
1 = The policy is enabled. The user cannot create new tasks.

Task Creation (HKLM)
HKLM\SOFTWARE\Policies\Microsoft\Windows\Task Scheduler5.0
http://www.microsoft.com/technet/pro....mspx?mfr=true

Task Creation (HKCU)
HKCU\SOFTWARE\Policies\Microsoft\Windows\Task Scheduler5.0
http://www.microsoft.com/technet/pro....mspx?mfr=true

--
Hope this helps. Let us know.

Wes
MS-MVP Windows Shell/User

In news:(E-Mail Removed),
Wesley Vogel <(E-Mail Removed)> hunted and pecked:
> See if this key exists...
> HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Task Scheduler5.0
>
> If it does, see this...
> How to prevent a user from running Task Scheduler in Windows
> http://support.microsoft.com/kb/305612
>
> Prohibit New Task Creation Policy...
> A value of 1 removes the Add Scheduled Task item that starts the New Task
> wizard. Also, the system does not respond when users try to move, paste,
> or drag programs or documents into the Scheduled Tasks folder.
>
> HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Task Scheduler5.0
> Value Name: Task Creation
> Data Type: REG_DWORD
> Value Data: 0 or 1
> 0 (or not in the registry) = The policy is disabled or not configured. The
> user can create new tasks.
> 1 = The policy is enabled. The user cannot create new tasks.
>
> Task Creation
> HKLM\SOFTWARE\Policies\Microsoft\Windows\Task Scheduler5.0
> http://www.microsoft.com/technet/pro....mspx?mfr=true
>
> --
> Hope this helps. Let us know.
>
> Wes
> MS-MVP Windows Shell/User
>
> In news:CF20A24A-9357-4BE2-A1C7-(E-Mail Removed),
> Andy C <(E-Mail Removed)> hunted and pecked:
>> Pegasus
>>
>> I applied your settings. I rebooted after I applied the settings. I am
>> still experiencing the same issue.
>>
>>
>>
>>> Run these commands from a Command Prompt:
>>> cacls c:\windows\ta* (to check the permissions)
>>> cacls c:\windows\tasks /e /t /g everyone:F (to set them)


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Add Scheduled Task wizard missing Bob Microsoft Windows 2000 1 21st Feb 2008 09:44 PM
Missing scheduled task? =?Utf-8?B?U29uaWNKb2U=?= Windows Vista Performance 6 7th Nov 2007 07:48 PM
Scheduled task gets deleted/missing compsosinc@gmail.com Windows XP General 1 29th Mar 2007 02:02 PM
Scheduled task gets deleted/missing compsosinc@gmail.com Windows XP Help 0 29th Mar 2007 01:35 PM
The Security Tab Is Missing from a Scheduled Task's Properties RMB Windows XP Security 1 7th Jun 2004 07:00 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:37 AM.