Intermec cn30 Mode D'Emploi

Page de 196
Chapter 3 — Configuring the CN30
CN30 Mobile Computer User’s Manual
103
Keywords that AutoExec supports are:
Examples of keyword usage are as follows:
; Allow message pop up if an error occurs.
QUIET 0
; Log any debug output to a trace file.
LOGGING 1
; Perform a SetEvent on the event name "autoexec_started".
SIGNAL "autoexec_started"
; Include this child data file, childexec.dat.
CALL "\childexec.dat"
; Use autocopy to copy the audio control panel from flash file store to the 
windows directory. Wait for up to 60 seconds for it to exit.
EXEC "\Flash File Store\SYSTEM\autocopy.exe" -S"\Flash File Store\Sys-
tem\CPLAudio.cpl" -D"\Windows\CPLAudio.cpl"
; Change the default EXEC wait time to 90 seconds.
EXECWAIT 90
; Suspend processing any commands for 10 seconds.
WAIT 10
; Suspend processing any commands until event called MyEventName is signaled.
WAITFOR "MyEventName"
QUIET
Enables user notification when an error occurs.
LOGGING
Enables logging to a trace file.
SIGNAL
Enables the specified named event and is immediately signaled. Useful for notifying other compo-
nents of the current status.
CALL
Opens another .DAT file to process. After the called file is completed, this file is resumed.
RUN
Runs a program with a SW_SHOWNORMAL attribute. Autoexec does not wait for the child process 
to exit.
LOAD
Runs a program with a SW_HIDE attribute. Autoexec waits for 60 seconds for the child process to 
exit or EXECWAIT seconds if set.
EXEC
Runs the specified program. AutoExec waits 60 seconds for the child process to exit or EXECWAIT 
seconds if set.
EXECWAIT
Changes the default EXEC wait time from 60 seconds to the number of seconds specified. There is a 
maximum 10-minute limit imposed.
WAIT
Forces a sleep for the specified number of seconds to occur.
WAITFOR
Forces a sleep until the named event is signaled.