Confidential and proprietary information of NCRCorporation.
Unauthorized use, reproduction and/or distribution is strictly prohibited.
199
Enabling ONESHOT
When the Power Switch is pressed for four seconds, the hardware level override of the
processor forces an uncontrolled shutdown. This can corrupt the Operating System. The
ONESHOT feature disables this hardware override. To turn on the ONESHOT feature,
follow these steps:
1. Enter BIOS Setup using the [Del] or [F2] hotkey.
2. In Setup, go to Advanced → NCRPOS → ONESHOT Control.
3. Set the ONESHOTControl setting to ENABLED.
4. Press [F4] to save and exit.
Accessing Serial Number and Class-Model
Information
Below is an example of a VbScript code on how to obtain the Serial Number and Class-
Model Information of the terminal.
On Error Resume Next
DIM returnValue
DIM version
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer &
"\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_
ComputerSystem",,48)
For Each objItem in colItems
Wscript.Echo "Class Model: " & objItem.Model
Wscript.Echo "Serial Number: " & objItem.Name
Next