1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
; *****************Section 1*****************
; Logon Script Pour Mon T.F.E.
; Mai 2009
; Par Yannick Haccourt (tihacya@qtti.info)
; *****************Section 2*****************
; Effacement
CLS
;
Color g+/n
small ; Affichage en petit carracteres
at (2,10) "TFE College Saint-Servais"
small
at (12,36) "***** ************** *****"
at (13,34) "********* **************** *****"
at (14,33) "*** *** ************** *****"
at (15,33) "*** *** ****** "
at (16,33) "*** *** ****** *****"
at (17,33) "*** *** ****** *****"
at (18,33) "*** *** ****** *****"
at (19,33) "*** *** ****** *****"
at (20,33) "*** ****** ****** *****"
at (21,33) "*** ***** ****** *****"
at (22,34) "********** ****** *****"
at (23,36) "********* **** *****"
at (24,43) "***"
at (25,44) "***"
;
sleep 2 ; Attendre 2 secondes
;
;
; *****************Section 3*****************
; Effacement
CLS
;
; Création des lecteurs réseaux.
;
USE H: "\\SERVDATA\Profiles\@userid"
USE P: "\\SERVDATA\Public"
;
at (13,32) ".."
;
sleep 1 ; Attendez une seconde
;
; *****************Section 4*****************
;
small
color b+/n
BOX (7,20,17,61, FULL)
;
COLOR W+/n
;
IF ((@TIME > "00:00:00") AND (@TIME <= "12:00:00"))
at (9,22) "Bonne Journée !"
ELSE
IF ((@TIME > "12:00:01") AND (@TIME < "18:00:00))
at (9,22) "Bonne Fin De Journée !"
ELSE
at (9,22) "Bonne Soirée !"
ENDIF
ENDIF
;
CLS
;
at (10,22) @fullname
at (12,22) "Attendez l'exécution du Logon Script"
at (13,22) "En Cours..."
EXIT |
Partager