Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Locking Background/Screen Saver on J100 Series Phones 1

Status
Not open for further replies.

Stengrad

Programmer
Dec 10, 2003
90
US
A customer was wondering if the background/screen saver could be locked to prevent users from changing J100 Series phones. I was thinking maybe there was something in the 46xx file or whatever the JSeries phone uses that may be able to do this?

Senior Field Technician
Hampton Roads Communication Technologies
 
Set the following parameters to 0 in the 46xxspecials.txt file
SET BACKGROUND_IMAGE_SELECTABLE 0
SET SCREENSAVER_IMAGE_SELECTABLE 0




Code:
# J1X9SPECIALS
IF $SIG_IN_USE SEQ H323 GOTO J1X9H323SPECIALS
##
##
## BACKGROUND_IMAGE specifies a list of background images. The default value is "".
SET BACKGROUND_IMAGE "BGimage1.jpg,BGimage2.jpg"
##
##
## BACKGROUND_IMAGE_DISPLAY specifies the administrator choice of background image. 
SET BACKGROUND_IMAGE_DISPLAY BGimage.jpg
##
##
## BACKGROUND_IMAGE_SELECTABLE specifies whether end users are allowed to choose background images 
## (and overrides administrator choice as configured using BACKGROUND_IMAGE_DISPLAY parameter). 
##  Value  	Operation
##    0 	End user is not allowed to choose background image and will not see the background image selection in the Settings -> Display menu. 
##    1 	End user is allowed to choose the background image from the Settings -> Display menu (Default)
SET BACKGROUND_IMAGE_SELECTABLE 1
##
##
## SCREENSAVERON specifies the number of minutes of idle time after which the screen saver will be displayed.
SET SCREENSAVERON 1
##
##
## SCREENSAVER_IMAGE specifies a list of screensaver images. The default value is "".
SET SCREENSAVER_IMAGE "SSimage1.jpg,SSimage2.jpg"
##
##
## SCREENSAVER_IMAGE_DISPLAY specifies the administrator choice of screensaver image. 
SET SCREENSAVER_IMAGE_DISPLAY SSimage.jpg
##
##
## SCREENSAVER_IMAGE_SELECTABLE specifies whether end users are allowed to choose screensaver images 
## (and overrides administrator choice as configured using SCREENSAVER_IMAGE_DISPLAY parameter). 
##  Value  	Operation
##    0 	End user is not allowed to choose screensaver image and will not see the screensaver image selection in the Settings -> Display menu. 
##    1 	End user is allowed to choose the screensaver image from the Settings -> Display menu (Default)
SET SCREENSAVER_IMAGE_SELECTABLE 1
##
##
##
GOTO GENERALSPECIALS
 
So by forcing the specific image in the settings file, this will prevent the user from changing? Or does this just make the "default" background/screensaver what is specified?

Senior Field Technician
Hampton Roads Communication Technologies
 
Read the answer already given. It clearly states how to set the images and how to prevent users from selecting different images. Configure the settings you want used in a 46xxspecials.txt file and upload that to the system's primary folder (along with the images).

Stuck in a never ending cycle of file copying.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top