wvrapplprof command

Purpose

List application profiles, or view details of, add, change, delete, or copy, an application profile. Note that this command does not allow you to modify any of the mailbox properties or options.

Syntax

wvrapplprof
{ -c -I profile_ID -O target_profile_ID -N target_profile_name
| -d -I profile_ID [-N profile_name]
| -h
| -l {-I {all | profile_ID_spec} | -N profile_name_spec}
| -m -I profile_ID [-N profile_name] [-S state_table] [-E entry_point]
     [-L language] [-C subscriber_class]
     [-G active_greeting_ID]
| -n -I profile_ID -N profile_name -S state_table -E entry_point
     [-L language] [-C subscriber_class]
     [-B number_of_active_mailboxes ][-G active_greeting_ID]
| -v {-I profile_ID | -N profile_name}
| -?
}

Action flags

All action flags are lowercase.

-c
Copy the application profile identified by -I profile_ID, to create an identical profile identified by -O target_profile_ID.
-d
Delete the application profile identified by profile_ID. The -N flag can optionally be specified to help prevent inadvertent deletion of the wrong profile. Both profile_ID and profile_name must match those of the profile for it to be deleted.
-h
Display help for the command
-l
List all the application profiles whose profile IDs match the profile_ID_spec, or the profile_name_spec. These specifications can include percent (%) signs to indicate zero or more characters, or underscore to specify a single character. To list all application profiles on the system, use wvrapplprof -l -I all
-m
Modify the application profile identified by profile_ID, as specified by the other parameters.
-n
Create a new application profile identified by profile_ID.
-v
View the details of the application profile identified by profile_ID or profile_name.
-?
Display syntax of the command

Attribute flags

All attribute flags are uppercase.

-B
The number of active mailboxes to be initially associated with this application profile. Mailboxes are numbered sequentially from 1 up to a maximum of 10. For example, if you specify -B5, mailboxes from 1 to 5 are created and activated. Mailboxes from 6 to 10 will not exist. See wvrmailbox command for more details.
-C
The subscriber class to be associated with the application profile.
-E
The entry point in the state table invoked by the application profile.
-G
The identifier of the active greeting, a number in the range 1 to 255, to be used by the active mailboxes associated with this application profile.
-I
The profile ID of the application profile.
-L
The language in which the state table is to be run. A number in the range 1 to 255. Here is a list of example language numbers:

1 = US English
2 = Belgian Dutch
3 = Belgian French
4 = Canadian French
5 = Danish
6 = Finnish
7 = Swedish
8 = French
9 = German
10 = Italian
11 = Netherlands Dutch
12 = Norwegian
13 = Portuguese
14 = Spanish
15 = Swiss French
16 = Swiss German
17 = UK English
18 = Icelandic
19 = Greek
20 = Turkish
101 = US English TDD

Other numbers can be created by the user. To find out what the numbers of the installed languages are, click Languages in the Configuration window.

-N
The name of the application profile.
-O
The output profile ID when copying an application profile (this is the letter 'O', not the digit zero).
-S
The name of the state table invoked by the application profile.

Examples

Copy the application profile 123456 to create an identical profile 998877, with a profile name "newapp":

wvrapplprof -c -I 123456 -O 998877 -N newapp

Delete the application profile 123456:

wvrapplprof -d -I 123456

List all application profiles:

wvrapplprof -l -I all

List all application profiles whose profile IDs begin 9988:

wvrapplprof -l -I 9988%

List all application profiles whose names contain Saver:

wvrapplprof -l -N %Saver%

Modify the application profile 123456, changing its language to French:

wvrapplprof -m -I 123456 -L 8

Create a new application profile 665123, specifying only the mandatory parameters:

wvrapplprof -n -I 665123 -N accounts -S AVF_Main -E start

View the details of application profile whose name is Banking:

wvrapplprof -v -N Banking

View the details of application profile 123456:

wvrapplprof -v -I 123456