You can start the RoleTailored client at a command prompt. By adding command-line parameters, you can:

To run the RoleTailored client at a command prompt, open a command-prompt window and navigate to the RoleTailored client directory. The default location is:

  CopyCode imageCopy Code
Program Files\Microsoft Dynamics NAV\60\RoleTailored Client

The executable name is:

  CopyCode imageCopy Code
Microsoft.Dynamics.Nav.Client.exe

You can also start the RoleTailored client from the address bar in a browser or from a Run window using the same options. To start the RoleTailored client from a browser, type

  CopyCode imageCopy Code
DynamicsNAV://<Server/ServerInstance>/<Company>/

For example, to open the CRONUS International Ltd. company you could type

  CopyCode imageCopy Code
DynamicsNAV://localhost/DynamicsNAV/CRONUS%20International%20Ltd./

Command-Line Parameters

You can use the following parameters when you start the RoleTailored client at a command prompt.

Parameter Meaning

-?

Displays this list of parameters.

-profile: id

Starts the RoleTailored client with the specified profile.

Example

This command starts the RoleTailored client with the Accounting Manager profile:

  CopyCode imageCopy Code
Microsoft.Dynamics.Nav.Client.exe -profile:"Accounting Manager"

-configure

Starts the RoleTailored client in configuration mode. Use configuration mode to configure a profile. To specify which profile to configure, add the -profile parameter.

Example

This command starts the RoleTailored client in configuration mode for editing the Accounting Manager profile:

  CopyCode imageCopy Code
Microsoft.Dynamics.Nav.Client.exe -configure -profile:"Accounting Manager"

See How to: Configure a Role Center for details on configuring profiles.

-language: id

Starts the RoleTailored client with the specified language.

Examples

This command starts the RoleTailored client with locale ID 1033:

  CopyCode imageCopy Code
Microsoft.Dynamics.Nav.Client.exe -language:1033

This command starts the RoleTailored client for the culture named de-DE:

  CopyCode imageCopy Code
Microsoft.Dynamics.Nav.Client.exe -language:de-DE

-settings: file

Starts the RoleTailored client with the specified settings file.

For information on RoleTailored client settings files, see Configuring the RoleTailored Client.

Example

This command starts the RoleTailored client with a version of ClientUserSettings.Config that is not at the default location:

  CopyCode imageCopy Code
Microsoft.Dynamics.Nav.Client.exe -settings:"C:\AuxClientSettings\ClientUserSettings.config"

URL

Opens the RoleTailored client to a particular page or with a particular report.

Examples

This command starts the RoleTailored client and opens to page 21 (the Customer Card):

  CopyCode imageCopy Code
Microsoft.Dynamics.Nav.Client.exe "DynamicsNAV://<Server/ServerInstance>/Company/RunPage?Page=21"

This command starts the RoleTailored client and opens the request page for report 101 (the Customer List):

  CopyCode imageCopy Code
Microsoft.Dynamics.Nav.Client.exe "DynamicsNAV://<Server/ServerInstance>/Company/RunReport?Report=101"

This command runs the same report, assuming the default server, server instance, and company. This version runs from a browser instead of at a command prompt:

  CopyCode imageCopy Code
DynamicsNAV:////RunReport?Report=101

If you specify a Server and Server Instance, you must also specify a company. But you can specify a company without specifying a Server and Server Instance:

  CopyCode imageCopy Code
Microsoft.Dynamics.Nav.Client.exe "DynamicsNAV:///Company/RunReport?Report=101"

-failurestacktrace

Sends the stack trace for the RoleTailored client to Windows Clipboard.

See Also