Intermec CV41 Intermec Terminal Emulator (ITE) User Guide - Page 99

Sample Auto-Login Script Files, Example 1

Page 99 highlights

Chapter 3 - Customizing Your Configuration Sample Auto-Login Script Files You can use these sample script files as they are or as the starting point for creating your own auto-login script files. Example 1: Auto-Login With All Computers Using the Same Account HostName "*" WaitFor "login:" Send "username" WaitFor "Password:" Send "letmein" #Use this to log into any host #Wait for the login prompt #Send the user name #Wait for the password prompt #Send the password • The HostName command matches the host the user accesses. • The WaitFor command waits for a string to be displayed by the host. WaitFor takes up to 10 strings, 20 characters long. The strings must be enclosed in quotes and separated by a comma. • The first Send command sends a fixed user name, the second Send sends a fixed password. • Angle brackets < and > can enclose uppercase mnemonics or hexadecimal values. Example 2: Auto-Login With Different User Names and Passwords Input "Enter user name", username InputHidden "Enter password", password HostName "*" WaitFor "login:" Send username Send "" WaitFor "Password:" Send password Send "" #Prompt for user name #Prompt for password #Prompt for host name #Wait for login prompt #Send the user name #Send a carriage return #Wait for password prompt #Send the users password #Send a carriage return • The Input and Send commands use input variables. Input commands require a prompt string followed by a comma and a variable name in which to store the string. • The InputHidden command displays "*" in place of any characters the user types. Place all Input commands before the first HostName command. • The Send command only accepts a single argument, so you need two Send commands to send the user name and a carriage return. Intermec Terminal Emulator (ITE) User Guide 87

  • 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
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220

Chapter 3 — Customizing Your Configuration
Intermec Terminal Emulator (ITE) User Guide
87
Sample Auto-Login Script Files
You can use these sample script files as they are or as the starting point for creating
your own auto-login script files.
Example 1:
Auto-Login With All Computers Using the Same Account
HostName "*"
#Use this to log into any host
WaitFor "login:"
#Wait for the login prompt
Send "username<NEWLN>"
#Send the user name
WaitFor "Password:"
#Wait for the password prompt
Send "letmein<ENTER>"
#Send the password
The HostName command matches the host the user accesses.
The WaitFor command waits for a string to be displayed by the host. WaitFor
takes up to 10 strings, 20 characters long. The strings must be enclosed in quotes
and separated by a comma.
The first Send command sends a fixed user name, the second Send sends a fixed
password.
Angle brackets < and > can enclose uppercase mnemonics or hexadecimal values.
Example 2:
Auto-Login With Different User Names and Passwords
Input "Enter user name", username
#Prompt for user name
InputHidden "Enter password", password
#Prompt for password
HostName "*"
#Prompt for host name
WaitFor "login:"
#Wait for login prompt
Send username
#Send the user name
Send "<NEWLN>"
#Send a carriage return
WaitFor "Password:"
#Wait for password prompt
Send password
#Send the users password
Send "<ENTER>"
#Send a carriage return
The Input and Send commands use input variables. Input commands require a
prompt string followed by a comma and a variable name in which to store the
string.
The InputHidden command displays “*” in place of any characters the user
types. Place all Input commands before the first HostName command.
The Send command only accepts a single argument, so you need two Send
commands to send the user name and a carriage return.