Nope, want to know how to do it w/o using the DC.
Main Topics
Browse All TopicsPower Options: Setting a default for all users.
I run a small LAN and would like to change the default Power Options settings for all users on all machines.
I'd like to know how to do this locally.
Thanks!
stc13
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
So you want to do this without the user needing to log onto a domain? I may not be understanding completely, but you could have the system add this registry setting on bootup (maybe stick the command to execute a abtch file in the "run" section of HKLM.
The registry settings would be:
[HKEY_USERS\.DEFAULT\Contr
"CurrentPowerPolicy"="1"
Where CurrentPowerPolicy can equal:
0 - Home/Office desktop
1 - Portable/Laptop computer
2 - Monitor on for presentations
3 - Network computer (no Wake-on-LAN)
4 - Optimized for high performance
5 - Optimized for power saving
If you are looking for something else then let me know.
How to do the power options locally on each system?
Start-Settings, Control Panel - Power Options -- now here are your choices --
1. If a desktop, set power scheme to always on, and everything below to "never" and in hibernation, turn it off.
2. If a laptop, set setting so you can squeeze 1 hour plus out of a battery.
Reason for 1? The concept that the hard disk needs to power down, to save it, is an outdated idea. Once a HDD is up to spinning, almost no wear to leave it that way. Use the rule that if a person is gone from the PC for more than 2-3 hours, shut it off, else, leave it running full steam. Many HDDs , in particular Seagate, don't power up if you power them done -- big app failure rate. And the idea that a monitor is "saved" by a screen saver is also an outdated idea of old VGA monitors. If they are gone, then sure, blank the screen, but any image is as bad ("good"?) as any other image.
Reason for 2? On full power, most battery-run laptops are lucky to get 15 munitues up time.
You can argue all you want against this, doesn't bother me. That's what a big US corp concluded after extensive testing of it. They decided, power managment on desktops is an arcahic idea.
Out of the box, the default settings are to put the machine into Hibernation and put the hard drive to sleep and go into system standby.
I don't want the machine to ever go to sleep. I want the default setting to be "Always On".
I've changed this setting under 1 ID, logged off and logged in w/ a different ID. Changing the settings for 1 user does not seem to apply to all users.
I want a fix for this. I got one on my previous ? that I can do to the DC using an add-in from Energystar:
http://www.energystar.gov/
I want to find one that I can do w/o relying on the AD. I was wondering if there was a setting I was missing somewhere to do this.
T and T
"you could have the system add this registry setting on bootup (maybe stick the command to execute a abtch file in the "run" section of HKLM."
I'm not to familiar with editing the Reg. Can you give me detailed explanation of how to do this? Sounds like what I am looking for.
Doing this user by user is what I'm trying to avoid.
Thanks!
If you want to do a registry change, it is really easy -- but you have to get it right. Just put the resistry item to change in a plain text file, but instead of naming it, say regfix.txt, call it regfix.reg. Then you right click on it and do "merge" and it is in the registry. Simple. But you may not have understood what I meant by "all users" -- look under Documents and Settings -- all users is a GROUP that has properties, and all users of the system logging in inherit these properties of the "all users" group.
So lets say you want to change a registry key "X" for all users. You can change it in the all users part of the registry, but if some other value for X exists for each individual user, when THEIR portion of the registry loads, it will nullify the "all users" in a precedence situation. So my comment -- You can't -- was saying that unless the item only exists in the "all users" part of the registry, you cannot apply a single registry patch that will affect all users of the system with different logins. Make sense?
Its a good point by sciwriter so I've found a better way than the registry setting.
It will ensure that the power setting is set whenever someone logs in.
Get this utility:
http://www.niall.addr.com/
Now, copy the cfgpower.exe to somewhere on the target computer (system32 would probably be a good place).
Now what you can do is create a batch file as follows:
@echo off
start /MIN cfgpower /setactive "Always On"
exit
Copy this batch file into C:\Documents and Settings\All Users\Start Menu\Programs\Startup (or wherever your All Users startup folder exits)
Now that batch file will execute whenever someone logs into the computer and set the power scheme to always on.
Good hunting, T&T. However, I think I have lost something in this thread -- why can't you just get each user to login to their computer and set the power up the way you want it? Once done, always done, right? Or are there a raft of people using each computer? Seems to me, a one-time "power event" throughout the office will do the job, and if anyone changes it, take away their coffee break. No?
I have asked everyone to change their settings, but I manage the office remotely and if the last user to log on doesn't edit the settings (people have a main computer, but there are some users that jump around a lot) I can't get to the machine if it goes to sleep.
Anyways, thanks for all the help guys. I learned a lot. I'm going to try the script when I get a chance, but I'm also going to take a look in the reg to see what sciwriter was talking about.
stc13
I was trying to do something similar. You can enter a registry setting into HKEY CURRENT USER using your normal login script, and running REGSRVR32 regsettings.txt or whatever.... and put the power options in there. or any other settings for that matter.
the incredibly stupid thing about this is, even if you DO set the registry setting for CURRENTCONFIG to "3" or whatever you want, it doesnt help... i got this working but when you go into power options to check, it DOES change which theme is selected but that theme just takes on whatever the drop down boxes below already contained.
thus i wanted to change everyone to always on, and it set everyone to always on but always on became whatever they were already set as. I even tried having the script import the entirety of PowerCfg and still no dice. its really weird, no idea why it would ever work like that.
Energy star has an app you can use but u have to install it on EVERY CLIENT MACHINE which i just dont like doing.
Business Accounts
Answer for Membership
by: T_and_TPosted on 2004-06-26 at 17:07:54ID: 11407918
Isn't this the same question as the last one?