home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / WindowsServerTrial / server.iso / sources / boot.wim / 1 / Windows / System32 / ras / switch.inf < prev   
INI File  |  2008-01-05  |  6KB  |  175 lines

  1. ; SWITCH.INF for Windows XP Network and Dial-up Connections/
  2. ; Remote Access Service
  3. ; Copyright (c) Microsoft Corporation.  All rights reserved.
  4.  
  5. ; You should read all of the comments in this file before you
  6. ; activate a script. Complete information about using this file
  7. ; is available in NETCFG.CHM.
  8.  
  9. ; This file provides sample logon scripts for connections to
  10. ; remote computers. Connections to Windows NT RAS computers do not use
  11. ; this file, so this file is used only for connecting to
  12. ; non-Microsoft computers.
  13.  
  14. ; SEE   Network Connections now supports the Windows 95 scripting
  15. ; ALSO  language which you may find easier to use than SWITCH.INF
  16. ;       scripts.  The language is described in NETCFG.CHM
  17.  
  18. ; The most common use of scripts is an after-dialing script that
  19. ; logs you on to a remote computer, such as an Internet connection
  20. ; provider.  You activate the scripts in this file by editing the
  21. ; Interactive logon and scripting settings in the Security properties
  22. ; of the Network Connection.
  23.  
  24. ; The Generic logon script can be activated and used immediately.
  25. ; The additional scripts in this file are provided as examples from
  26. ; which you can cut and paste relevant sections into your own scripts.
  27. ; The comment marker (;) in column one of the non-generic scripts must
  28. ; be removed before the scripts will work.
  29.  
  30. ; These scripts assume the remote computer uses the words login and
  31. ; password followed by a colon (eg "login:" and "password:") to prompt
  32. ; you for your username and password.  If the remote computer prompts
  33. ; you with words other than login and password,  you must
  34. ; replace ogin: and assword: in the scripts below with the exact
  35. ; text the remote computer uses. Note: The text in the script does not
  36. ; include the first few letters because the remote computer may respond
  37. ; with <Password> or <password>.
  38.  
  39. ;==============================================================
  40.  
  41. [Generic login]
  42.  
  43. ; This script will automate many logons when the remote computer
  44. ; prompts only for login (username) and password. This script requires
  45. ; Windows NT 3.51 or later.
  46.  
  47. ; When you first dial this entry, the "Connect" window will
  48. ; prompt for your username and password.  The username and password
  49. ; entered on that window will be used by the <username> and <password>
  50. ; macros in this script.  By requiring the username and password on
  51. ; initial dial, this script is secure.
  52.  
  53. ; The "Use Windows password" check box on the Network Connections 
  54. ; Security page must be cleared when using this script (cleared by 
  55. ; default), because the clear password is not available in that case.  
  56. ; Passwords saved with the "Save Password" checkbox will work.
  57.  
  58.  
  59. ; Each script is a sequence of alternating COMMANDs and responses.
  60. ; Here, we start communication with the remote computer by saying
  61. ; we have nothing to send before expecting a response.
  62.  
  63.       COMMAND=
  64.  
  65.  
  66. ; The following two lines cause Network Connections to ignore all responses
  67. ; until the remote computer requests your login name. If the remote
  68. ; computer prompts you with a word other than login you must
  69. ; replace ogin: in the line below with the exact text the
  70. ; remote computer uses.
  71.  
  72.       OK=<match>"ogin:"
  73.       LOOP=<ignore>
  74.  
  75.  
  76. ; This is the equivalent of typing the same username you filled in
  77. ; on the "Connect" window or saved with the "Save password"
  78. ; checkbox.
  79.  
  80.       COMMAND=<username><cr>
  81.  
  82.  
  83. ; The following two lines cause Network Connections to ignore all 
  84. ; responses until the remote computer requests your password. If 
  85. ; the remote computer prompts you with a word other than password 
  86. ; you must replace assword: in the line below with the exact text the
  87. ; remote computer uses.
  88.  
  89.       OK=<match>"assword:"
  90.       LOOP=<ignore>
  91.  
  92.  
  93. ; This is the equivalent of typing the same password you filled in
  94. ; on the "Connect" window or saved with the "Save password"
  95. ; checkbox.
  96.  
  97.       COMMAND=<password><cr>
  98.  
  99.  
  100. ; Ignore the final responses from the computer.
  101.  
  102.       OK=<ignore>
  103.  
  104. ; =====================================================================
  105. ; ADDITIONAL EXAMPLE SECTION
  106.  
  107. ; This additional script is provided as an example from which you can
  108. ; cut and paste relevant sections into your own scripts.  The comment
  109. ; marker (;) in column one must be removed before the ; script will
  110. ; work.
  111.  
  112. ;======================================================================
  113.  
  114. ; [Sample SLIP login]
  115.  
  116. ; Because SLIP connection logon sequences vary widely, it is difficult
  117. ; to provide even a generic version for you to use. The following script
  118. ; was used to connect to an actual SLIP provider.
  119.  
  120. ;  Start communication with remote computer by sending COMMAND=
  121. ;      COMMAND=
  122.  
  123.  
  124. ; The following two lines cause Network Connections to ignore all responses
  125. ; until the remote computer requests your login name. If the remote
  126. ; computer prompts you with a word other than login you must
  127. ; replace ogin: in the line below with the exact text the
  128. ; remote computer uses.
  129.  
  130. ;     OK=<match>"ogin:"
  131. ;     LOOP=<ignore>
  132.  
  133.  
  134. ; You must replace YourLoginHere in the line below
  135. ; with your actual login.
  136.  
  137. ;      COMMAND=YourLoginHere<cr>
  138.  
  139.  
  140. ; The following two lines cause Network Connections to ignore all responses
  141. ; until the remote computer requests your password. If the remote
  142. ; computer prompts you with a word other than password you must
  143. ; replace assword: in the line below with the exact text the
  144. ; remote computer uses.
  145.  
  146. ;      OK=<match>"assword:"
  147. ;      LOOP=<ignore>
  148.  
  149.  
  150. ; You must replace YourPasswordHere in the line below
  151. ; with your actual password.
  152.  
  153. ;      COMMAND=YourPasswordHere<cr>
  154.  
  155.  
  156. ; Provide 4 carriage returns to ignore 4 questions.
  157. ;    COMMAND=<cr>
  158. ;    COMMAND=<cr>
  159. ;    COMMAND=<cr>
  160. ;    COMMAND=<cr>
  161.  
  162. ; Wait for Home prompt.
  163. ;    COMMAND=
  164. ;    OK=<match>"Home"
  165. ;    LOOP=<ignore>
  166.  
  167. ; Request SLIP connection.
  168. ;   COMMAND=SLIP<cr>
  169.  
  170. ; At this point the script successfully ends and the SLIP Login Terminal
  171. ; window appears. You would enter the IP address provided by the remote
  172. ; computer (in the SLIP Login Terminal window) in the IP Address box and
  173. ; press the Done button.
  174.  
  175.