|
Re: scheduled shutdown
Howard - JC Publishing <HowardJCPublishing@discussions.microsoft.com>
wrote:
> I want to setup a shutdown command using schedule. When I run it
> something comes up on the screen very briefly and then nothing.
> Shutdown does not run. Could this be a permission issue?
Could be (I'd presume you were doing this as an administrator, though), but
how'd you run it? In a command window?
Since you say "schedule" - use a batch file & task scheduler, and
supply admin credentials to run the task.
In the batch file,
shutdown -r -t 3
....will shut down the PC in 3 seconds, and then restart it
shutdown -t 10
will shut down in 10 seconds.
Etc.
In a command prompt run shutdown /? for all the parameters.
> I know how
> to make changes through gpedit.msc when logged in as an administrator
> but I cannot find anything about shutdown permissions.
>
> Thank you.
|