smeserver-loginscript/root/etc/e-smith/web/panels/manager/html/loginscriptexample.html

67 lines
1.3 KiB
HTML
Raw Normal View History

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<HTML>
<HEAD>
<TITLE>e-smith manager</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#707070" ALINK="#707070" VLINK="#707070"
TOPMARGIN="0" LEFTMARGIN="0" MARGINHEIGHT="0" MARGINWIDTH="0">
<BR CLEAR="ALL">
<DIV STYLE="position: absolute; visibility: inherit; top: 50px; left: 56px; width: 85%; z-index: 2">
<FONT FACE="Helvetica,Arial">
<H2>Example Login Script</H2>
<P>Below is an example login script which utilises all of the special
'<TT><B>#if<I>x</I></B></TT>' tags:
<P>
<TT><PRE>
@ECHO OFF
ECHO Welcome to the XYZ computer network
ECHO -----------------------------------
ECHO.
#ifg finance, receipting
REM Map financedata iBay for finance and receipting groups:
NET USE F: \\server\financedata
#endif
#ifu fred
REM Say hello to Fred
ECHO Hello Fred!
#endif
#ifm fast-pc, speedy, killer-p3
REM Map the IT printer for the above named computers:
NET USE LPT1: \\server\itprn
#endif
#ifa Win95, WinNT
REM Run a virus update check on the Windows NT and 9x PCs:
call \\server\utils\files\virus\update.bat
REM The available Architectures are:
REM WinNT = Windows NT or 2000
REM Win95 = Windows 95 or 98
REM WfWg = Windows for Workgroups
#endif
</PRE></TT>
<P>
<HR>
<FONT SIZE="-1">copyright (c) 1999, 2000 e-smith, inc. all rights reserved.</FONT>
</FONT>
</DIV>
</BODY>
</HTML>