Wow, that was quick. Thanks a bunch Glenn. Although I couldn't get your suggestion to work. I kept getting an invaide Line 14 message. I did find my way to your website, and grabbed some code off of one of your demo kix files and implemented this. It works.

 Code:
  Color Y+/n	; use a bright color for demo so you can tell it's the external display script!

  'PLEASE REMEMBER TO LOG OUT, BUT LEAVE YOUR COMPUTER ON AT ' ? ?
  'THE END OF THE DAY. PLEASE ALSO TURN OFF YOUR MONITOR WHEN '? ?
  'NOT IN USE. THANK YOU! ' ?

  Color c+/n
  '' ?
  'Logon accepted for ' @FULLNAME ', validated by '@LSERVER ?
  ' with ' @PRIV ' access rights in the ' @DOMAIN ' domain.' ? ?
;  'OS Type: ' @PRODUCTTYPE ' / Version '  @DOS ?


  Color W+/n


"Press any key to continue:"
Get $C
? 


I would like to get get something like a salutation at the top to work with a time of day greeting that would be nice. Maybe too much? I found this but couldn't get it to work either.

 Code:
;prepare salutation
Select
Case Val("$hour") < 12
$Salutation = "Good Morning"

Case Val("$Hour") > 12 And Val("$Hour") < 18
$Salutation = "Good Afternoon"

Case Val("$Hour") > 18
$Salutation = "Good Evening"

At (4, 0) $salutation + " " + @FULLNAME



Thanks again. I now have what I've been wanting for a LONG time. Have a great weekend everyone!

Ken