A Windows XP help forum. PCbanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » PCbanter forum » Microsoft Windows 7 » Windows 7 Forum
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Safe Way To Reboot Unattended Laptop?



 
 
Thread Tools Rate Thread Display Modes
  #1  
Old June 17th 12, 01:36 AM posted to alt.windows7.general
(PeteCresswell)
external usenet poster
 
Posts: 1,933
Default Safe Way To Reboot Unattended Laptop?

Laptop running an IP camera server at a remote site.

Lid is kept open.

Camera server gets flaky every so often and we have no clue why,
but a reboot fixes it.

Seems logical to schedule something that reboots the laptop once
or twice a day.

Is there a "best" way to do this? (i.e. minimum chance of having
to ask somebody at the site to turn the thing back on...)
--
Pete Cresswell
Ads
  #2  
Old June 17th 12, 02:06 AM posted to alt.windows7.general
Char Jackson
external usenet poster
 
Posts: 10,449
Default Safe Way To Reboot Unattended Laptop?

On Sat, 16 Jun 2012 20:36:46 -0400, "(PeteCresswell)"
wrote:

Laptop running an IP camera server at a remote site.

Lid is kept open.

Camera server gets flaky every so often and we have no clue why,
but a reboot fixes it.

Seems logical to schedule something that reboots the laptop once
or twice a day.

Is there a "best" way to do this? (i.e. minimum chance of having
to ask somebody at the site to turn the thing back on...)


I think you'd be fairly safe by scheduling "shutdown /r" to run once
or twice a day.
Check it out at a Command Prompt by typing "shutdown /?" to see all of
the options.

--

Char Jackson
  #3  
Old June 17th 12, 04:15 AM posted to alt.windows7.general
Paul
external usenet poster
 
Posts: 18,275
Default Safe Way To Reboot Unattended Laptop?

(PeteCresswell) wrote:
Laptop running an IP camera server at a remote site.

Lid is kept open.

Camera server gets flaky every so often and we have no clue why,
but a reboot fixes it.

Seems logical to schedule something that reboots the laptop once
or twice a day.

Is there a "best" way to do this? (i.e. minimum chance of having
to ask somebody at the site to turn the thing back on...)


When you Google the name of this software, does anyone else
notice this kind of flaky behavior ?

Do you have any other OSes you could test with ?

Paul
  #4  
Old June 17th 12, 12:53 PM posted to alt.windows7.general
Elmo[_2_]
external usenet poster
 
Posts: 1,260
Default Safe Way To Reboot Unattended Laptop?

On 6/16/2012 8:36 PM, (PeteCresswell) wrote:
Laptop running an IP camera server at a remote site.

Lid is kept open.

Camera server gets flaky every so often and we have no clue why,
but a reboot fixes it.

Seems logical to schedule something that reboots the laptop once
or twice a day.

Is there a "best" way to do this? (i.e. minimum chance of having
to ask somebody at the site to turn the thing back on...)


Does the device use a USB port? If so, you might try this, just to see
if it eliminates the "flakiness": Open Device Manager, open the
properties of each USB hob, and under "Power Management", deselect the
option, "Allow the computer to turn off this device to save power".

Some other devices, such as the NIC or Ethernet card, also have this option.

--

Joe =o)
  #5  
Old June 17th 12, 01:07 PM posted to alt.windows7.general
Stan Brown
external usenet poster
 
Posts: 2,904
Default Safe Way To Reboot Unattended Laptop?

On Sat, 16 Jun 2012 20:36:46 -0400, (PeteCresswell) wrote:

Laptop running an IP camera server at a remote site.

Lid is kept open.

Camera server gets flaky every so often and we have no clue why,
but a reboot fixes it.

Seems logical to schedule something that reboots the laptop once
or twice a day.

Is there a "best" way to do this? (i.e. minimum chance of having
to ask somebody at the site to turn the thing back on...)


Does it require a login? I don't believe logins can be automated.

But if it doesn't require a login, then you can set up a one-line
batch file with the SHUTDOWN command and schedule it to run at a
certain time every day.

--
Stan Brown, Oak Road Systems, Tompkins County, New York, USA
http://OakRoadSystems.com
Shikata ga nai...
  #6  
Old June 17th 12, 03:44 PM posted to alt.windows7.general
Joe Morris
external usenet poster
 
Posts: 289
Default Safe Way To Reboot Unattended Laptop?

"Stan Brown" wrote:
On Sat, 16 Jun 2012 20:36:46 -0400, (PeteCresswell) wrote:


Seems logical to schedule something that reboots the laptop once
or twice a day.


Is there a "best" way to do this? (i.e. minimum chance of having
to ask somebody at the site to turn the thing back on...)


Does it require a login? I don't believe logins can be automated.


Autologon capability has been around for a long time, although it
(obviously, I hope) presents significant security problems if you aren't
careful. (E.g., be sure that physical access to the system is controlled,
and that what can be done to the machine via a network connection is
limited.)

There's a Microsoft discussion of one way to do set up an autologin on
Windows 7:

http://answers.microsoft.com/en-us/w...c-c7a2c4f728af

But a much easier method is to use the free "Autologon" SysInternals tool:

http://technet.microsoft.com/en-us/s...rnals/bb963905

One point on security: you can block some of the vulnerabilities of
autologon by configuring the system to immediately lock the console after
logon. Just set up a link in the Startup folder (or a Registry entry in
{HKCU,HKLM}\Software\Microsoft\Windows\CurrentVers ion\Run) to invoke the
following command:

RUNDLL32 USER32.DLL,LockWorkStation

Head-up: I've shown "RUNDLL32.DLL" and "USER32.DLL" in caps to make it clear
that the "L" is not the digit 1; you can use any combination of uppercase
and lowercase in typing these strings. The "LockWorkStation" entry *IS*
case-sensitive and must be entered exactly as shown.

Also: this command does not require elevation, so it can be run by an
unprivileged user.

If you put the command into the Registry I recommend that it be in the HKCU
hive for the account used for autologon and not in HKLM; this way if you log
onto the machine with another account the screen won't immediately lock.

Joe


  #7  
Old June 17th 12, 03:49 PM posted to alt.windows7.general
Char Jackson
external usenet poster
 
Posts: 10,449
Default Safe Way To Reboot Unattended Laptop?

On Sun, 17 Jun 2012 08:07:17 -0400, Stan Brown
wrote:

On Sat, 16 Jun 2012 20:36:46 -0400, (PeteCresswell) wrote:

Laptop running an IP camera server at a remote site.

Lid is kept open.

Camera server gets flaky every so often and we have no clue why,
but a reboot fixes it.

Seems logical to schedule something that reboots the laptop once
or twice a day.

Is there a "best" way to do this? (i.e. minimum chance of having
to ask somebody at the site to turn the thing back on...)


Does it require a login? I don't believe logins can be automated.


Yes, automatic login is a supported feature of Windows 7.

But if it doesn't require a login, then you can set up a one-line
batch file with the SHUTDOWN command and schedule it to run at a
certain time every day.


I said that yesterday. ;-)

--

Char Jackson
  #8  
Old June 18th 12, 02:08 PM posted to alt.windows7.general
Seth
external usenet poster
 
Posts: 466
Default Safe Way To Reboot Unattended Laptop?


"Char Jackson" wrote in message
...
On Sat, 16 Jun 2012 20:36:46 -0400, "(PeteCresswell)"
wrote:

Laptop running an IP camera server at a remote site.

Lid is kept open.

Camera server gets flaky every so often and we have no clue why,
but a reboot fixes it.

Seems logical to schedule something that reboots the laptop once
or twice a day.

Is there a "best" way to do this? (i.e. minimum chance of having
to ask somebody at the site to turn the thing back on...)


I think you'd be fairly safe by scheduling "shutdown /r" to run once
or twice a day.
Check it out at a Command Prompt by typing "shutdown /?" to see all of
the options.


I would recommend to use the /f parameter as well. This will Force stuck
operations to be closed (rather than the system waiting\prompting).


 




Thread Tools
Display Modes 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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off






All times are GMT +1. The time now is 09:06 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 PCbanter.
The comments are property of their posters.