| Erfahrener Benutzer
Status: Offline Beiträge: 245 Registriert seit: 18.03.2005 Alter: 30 | 
11.12.2006, 10:55
der kix sieht so aus.
; Filename: KIXTART.kix
; Function: Logon-Script
CLS ; Clears the Screen
COLOR b+/n
BOX (0,0,10,79,GRID) ; Background grid
COLOR b/n
BOX (2,11,4,66,Å ; Shadow of box1
COLOR g+/n
BOX (1,10,3,65,FULL) ; box1
COLOR b/n
BOX (6,1,9,79,Å ; Shadow of box2
COLOR g+/n
BOX (5,0,8,78,FULL) ; box2
COLOR w+/n
AT (2,30) "Welcome"
AT (6,2) "Welcome"
AT (7,2) "Dein login ist am laufen..."
COLOR y+/n
AT (6,10) @fullname
COLOR g+/n
AT (1,71) @time
AT (11,0)
SETTIME "@LSERVER" ; Keeps the WS-Time in synch. with the Server-Time
; ************************************************** ************************************************** ***********************
; Execute all required mappings for the various groups
IF INGROUP("g1"=1
USE H: "xxxv1"
USE M: "xxxv2"
ENDIF
IF INGROUP("g2"=1
USE w: "xxxv3"
ENDIF
SLEEP 1
; ************************************************** ************************************************** ***********************
; This section contains the macros and text-string which will be displayed
; in the logon-script boxes during the logon process
; Do not delete any comants IM
SMALL ; Display in small character mode
COLOR b+/n
BOX (0,0,24,79,GRID) ; Background grid
COLOR b/n
BOX (8,21,18,61,Å ; Shadow of the box
COLOR g+/n
BOX (7,20,17,60,FULL)
COLOR w+/n
AT ( 9,22) "Userid : " ; Display some text strings
AT (10,22) "Full name : "
AT (11,22) "Privilege : "
AT (12,22) "Workstation : "
AT (13,22) "Domain : "
AT (14,22) "Logon Server : "
COLOR y+/n
AT ( 9,37) @userid ; Displays the Username
AT (10,37) @fullname ; Displays the full name of the user
AT (11,37) @priv ; Displays the privileges of the user
AT (12,37) @wksta ; Displays the workstation name of the user
AT (13,37) @domain ; Displays the Domain
AT (14,37) @lserver ; Displays the name of the server
SLEEP 1 ; Wait for 3 secs (or key)
EXIT ; Quit the logon procedure and closes the window
; ********** EOF ************************************************** ************************************************** ******** |