Unsolved
This post is more than 5 years old
7 Posts
0
157314
January 13th, 2016 11:00
Always on Wyse Terminal
Models: T10, C10LE
ThinOS
8.1_027
I'm looking for a configuration that was possible with previous firmware. I would like the terminal to power itself back on if someone were to shut it down. Is this possible with the newer firmware versions? Auto power won't work as that only helps when electricity has been lost to the device.
Thanks,
Tim
No Events found!
tlucas82
7 Posts
0
January 13th, 2016 12:00
The problem with auto power is that it doesn't stop the user from shutting the terminal down.
Use of the AutoPower option does not interfere with performing a user directed shutdown.
RMontalvo
2 Intern
•
560 Posts
0
January 13th, 2016 12:00
Tlucas82,
I don't know which parameter you are using since you can use:
AutoPower=Yes
or
Device=CMOS AutoPower=Yes
Please not that the default is No.
If set to yes, then the system starts itself without waiting for users to press the power button. In cases where power was lost unexpectedly and if the thin client was shut down properly before power was lost unexpectedly, when the power is restored, the thin client will be powered. This setting is useful in a kiosk environment.
Once an AutoPower statement is processed, it alters the behavior of the thin client until a countermanding statement is processed. The effect of an AutoPower=Yes statement continues even if the statement is removed from the INI file in which it was found.
RMontalvo
2 Intern
•
560 Posts
0
January 18th, 2016 12:00
Looks like want you want is to run in KIOS mode. Please review the following example:
;*************************************************************
;* *
;* This wnos.ini file is meant as an example *
;* for a basic kiosk configuration *
;* *
;*************************************************************
;*************************************************************
;* General 1 *
;*************************************************************
autoload=2
;*********************************************
; The line below is recommended for KIOSK Mode
Privilege=None HydeSysInfo=yes
;*********************************************
;*************************************************************
;* Enable/diable the next two optios as required *
;* DisableButton allows you to disable the Power Button *
;* Autopower allows the terminal to automatically *
;* power on without pressing the power button *
DisableButton=yes
Autopower=yes
;* Device=audio Volume=8
;*************************************************************
;* Display *
;*************************************************************
Resolution=1024x768 Refresh=60
DesktopColorDepth=32
;*************************************************************
;* Time *
;*************************************************************
Timeserver=pool.ntp.org \
timeformat="12-hour format" \
Dateformat=mm/dd/yyyy
TimeZone='GMT - 08:00' \
ManualOverride=yes \
Daylight=yes \
Start=030507 \
End=100507 \
TimeZoneName="Pacific" \
DayLightName="Pacific"
;*************************************************************
;* Network *
;*************************************************************
Device=Ethernet Speed="Auto"
SignOn=No
MaxVNCD=1
VncPrompt=No
HideIP=yes
;*************************************************************
;* ICA *
;*************************************************************
;* Seamless=yes HideTaskBar=Yes
;-------------------------------------------------------------
;- ICA Session 1 -
;- Each line but the last must end with a ' \' -
;-------------------------------------------------------------
CONNECT=ICA \
Host=MyICAServer.com \
AutoConnect=Yes \
Reconnect=Yes \
Colors=64k \
Fullscreen=Yes \
UniSession=Yes \
Resolution=1024x768 \
Username="Enter User Name" \
Password="Enter Password" \
LocalCopy=No
;*************************************************************
; Comments on the Connect=ICA line
; Autoconnect=1 will automatically connect the session
; Reconnect=Yes will automatically reconnect the session if the enduser disconnects the session
; By providing the Username and password, you will ensure that the required credentials for the session are provided
tlucas82
7 Posts
0
January 20th, 2016 09:00
Hit the nail on the head, thanks much.
RMontalvo
2 Intern
•
560 Posts
0
January 20th, 2016 10:00
Glad I could help.