1 # Everything in the Global section applies to all users logging on to the
5 #Some substitution macro definitions
8 SERVERNAME = myservername
10 @ECHO "Welcome to our network!!!"
11 NET TIME \\servername /SET /YES
12 NET USE %MAINDRIVE \\%SERVERNAME\globalshare /YES
14 # Map the private user area in the global section so we don't have to
15 # create individual user entries for each user!
16 NET USE %USERDRIVE \\servername\%U /YES
18 # Group entries, User entries and OS entries each start with the
19 # keyword followed by a dash followed by--appropriately enough the Group
20 # name, the User name, or the OS name.
22 @ECHO "Welcome administrators!"
23 NET USE G: \\servername\adminshare1 /YES
24 NET USE I: \\servername\adminshare2 /YES
27 @ECHO "Be grateful we let you use computers!"
28 NET USE G: \\servername\peonshare1 /YES
31 @ECHO "What can I do for you today great one?"
32 NET USE G: \\servername\hackershare1 /YES
33 NET USE I: \\servername\adminshare2 /YES
36 @ECHO "Hello there Fred!"
37 NET USE F: \\servername\fredsspecialshare /YES
40 @ECHO "Time to upgrade isn't it?"
42 # End configuration file