Jump to content

How to allow a user to see the Scheduled Tasks share


Recommended Posts

Posted

Hi all,

 

Only Administrators is allowed to view the Scheduled Tasks share on a server.

 

How can i bypass this security pls ?

 

The user is owner of a .job and has change permission on the tasks folder.

 

thanks for your help.

regards,

  • Replies 6
  • Created
  • Last Reply
Guest Pegasus \(MVP\)
Posted

Re: How to allow a user to see the Scheduled Tasks share

 

 

"AlexM" <AlexM@discussions.microsoft.com> wrote in message

news:42D2E4EE-69E2-44D4-8481-DB3594C8BAA9@microsoft.com...

> Hi all,

>

> Only Administrators is allowed to view the Scheduled Tasks share on a

> server.

>

> How can i bypass this security pls ?

>

> The user is owner of a .job and has change permission on the tasks folder.

>

> thanks for your help.

> regards,

>

>

 

What is a "Scheduled Tasks share"? What is the overall context

of your question?

Posted

Re: How to allow a user to see the Scheduled Tasks share

 

hi,

 

If you browse a server (\\myserver) only an administrator can see the

"Scheduled Tasks share". For a user this share will not appear.

 

I would like to give enough permission to a domain user to see this share.

 

i hope that "share" is the correct word for this "folder".

 

"Pegasus (MVP)" wrote:

>

> "AlexM" <AlexM@discussions.microsoft.com> wrote in message

> news:42D2E4EE-69E2-44D4-8481-DB3594C8BAA9@microsoft.com...

> > Hi all,

> >

> > Only Administrators is allowed to view the Scheduled Tasks share on a

> > server.

> >

> > How can i bypass this security pls ?

> >

> > The user is owner of a .job and has change permission on the tasks folder.

> >

> > thanks for your help.

> > regards,

> >

> >

>

> What is a "Scheduled Tasks share"? What is the overall context

> of your question?

>

>

>

Guest Pegasus \(MVP\)
Posted

Re: How to allow a user to see the Scheduled Tasks share

 

This is not a share - it is a shortcut to the Task Scheduler. It would

be highly inappropriate to give a user access to this facility. I need

to ask again: what are you trying to achieve?

 

 

"AlexM" <AlexM@discussions.microsoft.com> wrote in message

news:F5F9AE30-3129-461A-9E16-DF5FD67A9BB9@microsoft.com...

> hi,

>

> If you browse a server (\\myserver) only an administrator can see the

> "Scheduled Tasks share". For a user this share will not appear.

>

> I would like to give enough permission to a domain user to see this share.

>

> i hope that "share" is the correct word for this "folder".

>

> "Pegasus (MVP)" wrote:

>

>>

>> "AlexM" <AlexM@discussions.microsoft.com> wrote in message

>> news:42D2E4EE-69E2-44D4-8481-DB3594C8BAA9@microsoft.com...

>> > Hi all,

>> >

>> > Only Administrators is allowed to view the Scheduled Tasks share on a

>> > server.

>> >

>> > How can i bypass this security pls ?

>> >

>> > The user is owner of a .job and has change permission on the tasks

>> > folder.

>> >

>> > thanks for your help.

>> > regards,

>> >

>> >

>>

>> What is a "Scheduled Tasks share"? What is the overall context

>> of your question?

>>

>>

>>

Posted

Re: How to allow a user to see the Scheduled Tasks share

 

A job runs every day at 09:00 PM, if needed the user would like to run the

scheduled job during the day.

 

 

 

"Pegasus (MVP)" wrote:

> This is not a share - it is a shortcut to the Task Scheduler. It would

> be highly inappropriate to give a user access to this facility. I need

> to ask again: what are you trying to achieve?

>

>

> "AlexM" <AlexM@discussions.microsoft.com> wrote in message

> news:F5F9AE30-3129-461A-9E16-DF5FD67A9BB9@microsoft.com...

> > hi,

> >

> > If you browse a server (\\myserver) only an administrator can see the

> > "Scheduled Tasks share". For a user this share will not appear.

> >

> > I would like to give enough permission to a domain user to see this share.

> >

> > i hope that "share" is the correct word for this "folder".

> >

> > "Pegasus (MVP)" wrote:

> >

> >>

> >> "AlexM" <AlexM@discussions.microsoft.com> wrote in message

> >> news:42D2E4EE-69E2-44D4-8481-DB3594C8BAA9@microsoft.com...

> >> > Hi all,

> >> >

> >> > Only Administrators is allowed to view the Scheduled Tasks share on a

> >> > server.

> >> >

> >> > How can i bypass this security pls ?

> >> >

> >> > The user is owner of a .job and has change permission on the tasks

> >> > folder.

> >> >

> >> > thanks for your help.

> >> > regards,

> >> >

> >> >

> >>

> >> What is a "Scheduled Tasks share"? What is the overall context

> >> of your question?

> >>

> >>

> >>

>

>

>

Guest Pegasus \(MVP\)
Posted

Re: How to allow a user to see the Scheduled Tasks share

 

You can do this indirectly. Schedule the following job to run

on the server once every five minutes:

 

@echo off

if not exist d:\UserShares\TaskScheduler\Launch.txt goto :eof

del d:\UserShares\TaskScheduler\Launch.txt

[Your command goes here]

 

Now give the user a shortcut that will generate the file

Launch.txt on the server. When the user clicks this shortcut

then the job will run on the server within five minutes.

 

 

"AlexM" <AlexM@discussions.microsoft.com> wrote in message

news:84246ED3-3742-4817-9D30-9072248F7E14@microsoft.com...

>A job runs every day at 09:00 PM, if needed the user would like to run the

> scheduled job during the day.

>

>

>

> "Pegasus (MVP)" wrote:

>

>> This is not a share - it is a shortcut to the Task Scheduler. It would

>> be highly inappropriate to give a user access to this facility. I need

>> to ask again: what are you trying to achieve?

>>

>>

>> "AlexM" <AlexM@discussions.microsoft.com> wrote in message

>> news:F5F9AE30-3129-461A-9E16-DF5FD67A9BB9@microsoft.com...

>> > hi,

>> >

>> > If you browse a server (\\myserver) only an administrator can see the

>> > "Scheduled Tasks share". For a user this share will not appear.

>> >

>> > I would like to give enough permission to a domain user to see this

>> > share.

>> >

>> > i hope that "share" is the correct word for this "folder".

>> >

>> > "Pegasus (MVP)" wrote:

>> >

>> >>

>> >> "AlexM" <AlexM@discussions.microsoft.com> wrote in message

>> >> news:42D2E4EE-69E2-44D4-8481-DB3594C8BAA9@microsoft.com...

>> >> > Hi all,

>> >> >

>> >> > Only Administrators is allowed to view the Scheduled Tasks share on

>> >> > a

>> >> > server.

>> >> >

>> >> > How can i bypass this security pls ?

>> >> >

>> >> > The user is owner of a .job and has change permission on the tasks

>> >> > folder.

>> >> >

>> >> > thanks for your help.

>> >> > regards,

>> >> >

>> >> >

>> >>

>> >> What is a "Scheduled Tasks share"? What is the overall context

>> >> of your question?

>> >>

>> >>

>> >>

>>

>>

>>

Posted

Re: How to allow a user to see the Scheduled Tasks share

 

Thanks for your answer.

It solves my problem.

 

 

"Pegasus (MVP)" wrote:

> You can do this indirectly. Schedule the following job to run

> on the server once every five minutes:

>

> @echo off

> if not exist d:\UserShares\TaskScheduler\Launch.txt goto :eof

> del d:\UserShares\TaskScheduler\Launch.txt

> [Your command goes here]

>

> Now give the user a shortcut that will generate the file

> Launch.txt on the server. When the user clicks this shortcut

> then the job will run on the server within five minutes.

>

>

> "AlexM" <AlexM@discussions.microsoft.com> wrote in message

> news:84246ED3-3742-4817-9D30-9072248F7E14@microsoft.com...

> >A job runs every day at 09:00 PM, if needed the user would like to run the

> > scheduled job during the day.

> >

> >

> >

> > "Pegasus (MVP)" wrote:

> >

> >> This is not a share - it is a shortcut to the Task Scheduler. It would

> >> be highly inappropriate to give a user access to this facility. I need

> >> to ask again: what are you trying to achieve?

> >>

> >>

> >> "AlexM" <AlexM@discussions.microsoft.com> wrote in message

> >> news:F5F9AE30-3129-461A-9E16-DF5FD67A9BB9@microsoft.com...

> >> > hi,

> >> >

> >> > If you browse a server (\\myserver) only an administrator can see the

> >> > "Scheduled Tasks share". For a user this share will not appear.

> >> >

> >> > I would like to give enough permission to a domain user to see this

> >> > share.

> >> >

> >> > i hope that "share" is the correct word for this "folder".

> >> >

> >> > "Pegasus (MVP)" wrote:

> >> >

> >> >>

> >> >> "AlexM" <AlexM@discussions.microsoft.com> wrote in message

> >> >> news:42D2E4EE-69E2-44D4-8481-DB3594C8BAA9@microsoft.com...

> >> >> > Hi all,

> >> >> >

> >> >> > Only Administrators is allowed to view the Scheduled Tasks share on

> >> >> > a

> >> >> > server.

> >> >> >

> >> >> > How can i bypass this security pls ?

> >> >> >

> >> >> > The user is owner of a .job and has change permission on the tasks

> >> >> > folder.

> >> >> >

> >> >> > thanks for your help.

> >> >> > regards,

> >> >> >

> >> >> >

> >> >>

> >> >> What is a "Scheduled Tasks share"? What is the overall context

> >> >> of your question?

> >> >>

> >> >>

> >> >>

> >>

> >>

> >>

>

>

>


×
×
  • Create New...