Reputation: 735
On most newer computers you can shutdown the hard way by pressing the power button for a couple of seconds. But I want to prevent this completely.
You're able to prevent some soft events like the sleep, suspend, hibernate and "Press power button" events in Windows control panel; you can also use some Win32 and WDI programming to catch and handle/deny those events but it doesn't seem to stop the mechanical power off when you hold the button for a longer time.
I guess the power button is hard-wired to the power supply and never waits for the OS when you hold it down for some seconds? Or is there some way to prevent even this case by code?
I'm a .NET developer.
Whooaaa...! Lots of you really argued for not doing this - "You don't own my computer or my OS", - "are you developing SkyNet" etc :) This application is a highly customized and closed solution for some customers. It's a kiosk application on customized hardware running on Windows XP Embedded and use a touch screen. It's not public.
Upvotes: 8
Views: 20325
Reputation: 94869
See page 86 of the ACPI spec in relation to the 4-second rule (https://uefi.org/sites/default/files/resources/ACPI_6_3_final_Jan30.pdf)
The text is as follows:
4.8.2.2.1.3 Power Button Override
The ACPI specification also allows that if the user presses the power button for more than four seconds while the system is in the working state, a hardware event is generated and the system will transition to the soft-off state. This hardware event is called a power button override. In reaction to the power button override event, the hardware clears the power button status bit (PWRBTN_STS).
Long and the short of it is that the logic is in hardware. There is no documented method for changing this timing in the ACPI specification.
Upvotes: 9
Reputation: 41
I also wanted to achieve the same thing. When reading the answers here I decided to open my PC. I own an HP All-In-One and in my case, I could only disable the power button. To partially disable it can only be possible with hardware fiddling and tweaking.
Upvotes: 0
Reputation: 11
It does make sense when the computer users are children and the power button becomes rather a game than an emergency action.The better way for a child to learn shutting down the machine via software is to disable mechanichal shutdown.
Upvotes: 1
Reputation: 51
Use a pulser switch. I'm not sure if that is the right term but I have seen them in catalog(s). It's a snap action switch which only 'makes' for a split second as you press and not as you release it. Stopping in the middle doesn't work. Once you reach the threshold the mechanism start moving to close the contact and doesn't stop moving until the contact opens again. This will allow you to start normally and stop normally but no way to keep the circuit closed for 4 seconds. (without opening the case, of course)
Upvotes: 5
Reputation:
Okay, so maybe it is insane to disable the power button. But we have a software application the uses a database and uses an expensive set of licenses. This large German vendor uses a license manager that moves the licenses physically around the drive. Defragging, certain anti-virus applications, and cutting the power corrupts the licenses. We have a UPS to allow elegant shutdowns if the machine power is cut. Now it seems some service guy or operator has powered down the PC with the power button corrupting the licenses. These devices are located in remote location all over the world and training the operator may not always prevent this. It seems like the solution options are 1) Work with the vendor to disable the power button, 2) attempt to trap it and warn the user of possible doom, or 3) redesign the display using an OS and application immune from this power removal.
Upvotes: 2
Reputation: 158361
I would suggest to somehow just taking the power button out of reach from the user. Maybe removing it completely. And making sure the computer turns on automatically when it gets power or something (not sure but could be possible in bios?).
Anyways, for an always on kiosk thing, this does kind of make sense. At least it does for much other hardware. Where the only way to turning it off is to cut the power.
Upvotes: 0
Reputation: 1504172
I would hope that you can't do this. I've run into situations a number of times where I couldn't reboot the computer in any other way. In such cases, do you really want to force a laptop user to unplug the power supply and remove the battery while running?
Having given that warning, you may be writing software for rather different situations where it makes more sense. Could you give more details about the motivation for this?
If a user is able to hold the power button down (indicating that they really, really want to shut the machine down) are they unable to physically remove power?
EDIT: Responding to the comment from magsto:
If everyone involved really, really wants this - having explained to them that if things go wrong and they need to hard-reset the computer, they'll have to go to an even more direct way of powering down, which I suspect is more likely to damage hardware than the "hold down power" method... talk to the device manufacturer. It sounds like you're probably working with a specific device, so they may be able to tweak something in the BIOS for you, even if it's not a publicly available option.
Given that this is almost always a really bad idea, I'm not surprised there isn't simple support for it, but if you ask the manufacturer there may be some hidden way of doing what you want. I'd still encourage you to get everyone involved to think about all the potential consequences though.
Upvotes: 12
Reputation: 117360
Unplug the power cable from the motherboard, and hardwire it to be on all the time. :)
Upvotes: 4
Reputation: 107
Are you going nearer to develop the SkyNet ?
Sorry for this question, but as lot of people has suggested, I too believe this shouldn't be made possible, if at all it is possible to design.
Upvotes: 2
Reputation: 12288
I believe the only way you can change this is by changing manually the settings in your BIOS. This probably can't be caught by a programming language. If you realy need to, you could just unplug the tiny wire from your motherboard which goes to the power button.
Upvotes: 2
Reputation: 12016
You can't and shouldn't be messing with this feature.
I can envisage two scenarios where this might be an issue:
Upvotes: 1
Reputation: 147471
As far as I know, you are correct in saying that the OS is not even involved in this type of "shutdown". Holding the power button for a while is just a signal to the hardware to immediately turn off power to all devices within the computer. Normal shutdown/sleep/hibernate events can of course be caught and be handled using the WinAPI, as you state.
Upvotes: 4
Reputation: 6953
This is not possible as this Power off occurs below the operating system level so it is like pulling the plug as far as the OS is concerned!
Upvotes: 4
Reputation: 2465
It is indeed a mechanical power off, so it will be kind of difficult to circumvent.
If it's really important, you could disconnect the power button and turn the computer on/off with wake-on-lan resp. remote shutdown.
Upvotes: 5