![]() | |
![]() |
| | Thread Tools | Search this Thread | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
On 5 Jan 2007 21:09:35 -0800, "Krish" <krisunela (AT) hotmail (DOT) com> wrote: My office computers should not be switched on after 7 PM. If anybody tries to switch on the PC, it should shutdown immediately after booting. Is there any free software for this purpose? |
|
You could do a dos batch trick, looking at the clock and calling C:\WINDOWS\RUNDLL32.EXE user,exitwindows if it is within the time limits. Stick it in Autoexec.bat with "echo off" so nothing shows up on the screen.. |
#3
| |||
| |||
|
|
Hi, My office computers should not be switched on after 7 PM. If anybody tries to switch on the PC, it should shutdown immediately after booting. Is there any free software for this purpose? |
#4
| |||
| |||
|
|
On Sat, 6 Jan 2007 08:32:16 -0500, "Don Phillipson" d.phillipsonSPAMBLOCK (AT) ncf (DOT) ca> wrote: The protection thus available seems small. It can be bypassed by booting up in Safe Mode and renaming AUTOEXEC to boot Windows. A BIOS password offers better protection. |
|
That assumes someone could really figure out what was going on. This would just start booting and before there was any real activity on the screen it would shut down. The BIOS password would need to be entered, no matter what time it was. If you knew it at 0830 you would still know it at 2030 |
|
My office computers should not be switched on after 7 PM. If anybody tries to switch on the PC, it should shutdown immediately after booting. Is there any free software for this purpose? |
#5
| |||
| |||
|
|
On Sun, 7 Jan 2007 09:08:27 -0500, "Don Phillipson" d.phillipsonSPAMBLOCK (AT) ncf (DOT) ca> wrote: On Sat, 6 Jan 2007 08:32:16 -0500, "Don Phillipson" d.phillipsonSPAMBLOCK (AT) ncf (DOT) ca> wrote: The protection thus available seems small. It can be bypassed by booting up in Safe Mode and renaming AUTOEXEC to boot Windows. A BIOS password offers better protection. gfretwell (AT) aol (DOT) com> wrote in message news:5gmvp2t0hfscfl9ops7ru1ct64rl6j63re (AT) 4ax (DOT) com... That assumes someone could really figure out what was going on. This would just start booting and before there was any real activity on the screen it would shut down. The BIOS password would need to be entered, no matter what time it was. If you knew it at 0830 you would still know it at 2030 It was perhaps a mistake to delete the original question: My office computers should not be switched on after 7 PM. If anybody tries to switch on the PC, it should shutdown immediately after booting. Is there any free software for this purpose? This is poorly phrased. We can be sure the OP does not mean he wants the PCs (after hours) first to boot and then shut down. He wants simply to prevent unauthorized users from starting the PCs after hours. The only real way to prevent unauthorized access is physical protection that keeps people from getting to the PC. If they are smart enough to find and defeat a DOS batch file in the autoexec they can probably defeat the BIOS password. (most windoze users don't even know DOS exists) All you really have to do is plug the CMOS reset jumper and autoreconfig the system. If I was a serious hacker I would simply plug the hard drive into another system I do control with some long cables. I imagine this is really just to keep the employees from playing games and downloading porno after hours. |
#6
| |||
| |||
|
#7
| |||
| |||
|
#8
| |||
| |||
|
|
My earlier posting may kindly be seen. I solved the problem by the following DOS batch file for my Windows 98 PC and the batch file is added in 'Autoexec.bat' file. This batch file uses two utilities namely 'Hour.com' and 'Shutdown.com'. The 'Shutdown.com' utility is not needed for Windows XP users; they can very well use Shutdown command of Windows XP. This batch file will shutdown the PC if anybody boots the PC before 8 AM or after 7 PM - Krisunela @echo off call hour IF ERRORLEVEL 19 goto shut IF NOT ERRORLEVEL 8 goto shut Goto End :shut Shutdown rem Shutdown -S -t 0 (for Windows XP) :end What ERRORLEVEL does hour give if I start the PC up at midday? |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |