@echo off cls echo ==================Agreement================== echo 1. The user interface for information contained on Internet/Intranet/Extranet-related echo systems should be classified as either confidential or not confidential, as defined by echo corporate confidentiality guidelines, details of which can be found in Human Resources echo policies. Examples of confidential information include but are not limited to: company echo private, corporate strategies, competitor sensitive, trade secrets, specifications, echo customer lists, and research data. Employees should take all necessary steps to prevent echo unauthorized access to this information. echo 2. Keep passwords secure and do not share accounts. Authorized users are responsible for echo the security of their passwords and accounts. System level passwords should be changed echo quarterly, user level passwords should be changed every six months. echo 3. All PCs, laptops and workstations should be secured with a password-protected echo screensaver with the automatic activation feature set at 10 minutes or less, or by echo logging-off when the host will be unattended. echo 4. Because information contained on portable computers is especially vulnerable, special echo care should be exercised. Do not leave a protable computer unattended. echo 5. Postings by employees from a Company_Name email address to newsgroups should contain echo a disclaimer stating that the opinions expressed are strictly their own and not necessarily echo those of Company_Name, unless posting is in the course of business duties. echo 6. All hosts used by the employee that are connected to the Company_Name echo Internet/Intranet/Extranet, whether owned by the employee or Company_Name, shall be echo continually executing approved virus-scanning software with a current virus database. echo Unless overridden by departmental or group policy. echo 7.Employees must use extreme caution when opening e-mail attachments received from unknown echo senders, which may contain viruses, e-mail bombs, or Trojan horse code. echo ============================================= echo Do you understand and agree to these terms? Press "Y" to accept. echo . echo ++++++++++++++OTHERWISE++++++++++++++ echo . ECHO Press "N" if you do not agree, and you will be logged off. CHOICE /C:YN^[ /N > NUL IF ERRORLEVEL 3 GOTO logoff IF ERRORLEVEL 2 GOTO logoff IF ERRORLEVEL 1 GOTO Ty cls :logoff shutdown -l -c -f "You did not agree to the Terms of Serice Agreement, your being logged off in:" -t 10 :Ty @echo Thank You for your time, you are being logged on to Company_Name's Network. sleep 2 :END ***NOTE*** More "verbage" and legal speak can be found here at SANS: http://www.sans.org/resources/policies/ Replace "Company_Name" with your companies name. You can also use a Pause statement if the policies seem to long like this: echo ==================Agreement================== echo 1. The user interface for information contained on Internet/Intranet/Extranet-related echo systems should be classified as either confidential or not confidential, as defined by echo corporate confidentiality guidelines, details of which can be found in Human Resources echo policies. Examples of confidential information include but are not limited to: company echo private, corporate strategies, competitor sensitive, trade secrets, specifications, echo customer lists, and research data. Employees should take all necessary steps to prevent echo unauthorized access to this information. echo 2. Keep passwords secure and do not share accounts. Authorized users are responsible for echo the security of their passwords and accounts. System level passwords should be changed echo quarterly, user level passwords should be changed every six months. echo 3. All PCs, laptops and workstations should be secured with a password-protected echo screensaver with the automatic activation feature set at 10 minutes or less, or by echo logging-off when the host will be unattended. pause echo 4. Because information contained on portable computers is especially vulnerable, special echo care should be exercised. Do not leave a protable computer unattended. echo 5. Postings by employees from a Company_Name email address to newsgroups should contain echo a disclaimer stating that the opinions expressed are strictly their own and not necessarily echo those of Company_Name, unless posting is in the course of business duties. echo 6. All hosts used by the employee that are connected to the Company_Name echo Internet/Intranet/Extranet, whether owned by the employee or Company_Name, shall be echo continually executing approved virus-scanning software with a current virus database. echo Unless overridden by departmental or group policy. echo 7.Employees must use extreme caution when opening e-mail attachments received from unknown echo senders, which may contain viruses, e-mail bombs, or Trojan horse code. echo =============================================