Managing Launch items


Manage the  Launch button on the toolbar to be configured to open one or more web pages or files.

 

 

The launch items can be configured through the configuration update process. The <launchItem> tag must be inserted within opening and closing <launch> tags.

The table below describes the properties that can be modified

 

 Property

 Mandatory / Optional

 Description

 action

 Mandatory

Set to "insert" to add the  location

 title

 Mandatory

The user friendly name to display in the search dropdown menu when multiple search locations are configured

 type

 Mandatory

Set to “URL” or “File”

URL – to launch web pages

File – to launch a file or application

 url

 Mandatory (if type=URL)

 The URL of a web page including protocol e.g. http://portal/search/default.aspx

 file

 Mandatory (if type=file)

 The filename of a file to launch. This could be a document (e.g. c:\myworddoc.docx) or an application (e.g. notepad.exe).

The full file path must be included unless the file location is included on the PATH environment variable in Windows.

 

Example: Add a single web page launch item (any items already setup by the user will be preserved)

<configuration>
    <launch>
    <launchItem title="New leave application" type="url" url="http://portal/forms/leaveappform.aspx" action="insert"/>
    </launch>
</configuration>

 

 Example: Remove any previously configured items and replace with 3 new launch items

 

<configuration>
     <configElementDeletions>
     <configElementDeletion elementPath="launch"/>
      </configElementDeletions>
    <launch>
    <launchItem type="file" file="g:\pricelist.xlsx" title="Current Pricelist" action="insert"/>
    <launchItem type="file" file="WinWord.exe" title="Word" action="insert"/>
    </launch>
</configuration> 

 

 

Restrict  the ability to modify the launch area:

The <launchSettings> tag must be inserted within opening and closing <configuration> tags.


The table describes the properties that can be modified.

Property 

 Mandatory / Optional

 Description

 action

 Mandatory

Set to “insert” to change the default behavior

Set to “delete” to revert to default behavior

 enabled

 Optional

This setting allows you to control if users have the ability to change this feature through the OnePlaceMail Settings.

Valid values: “true or “false” (default is true)

 

Example: Prevent user from modifying launch items

<configuration>
    <launchSettings action="insert" enabled="false"/>
</configuration>

 

Example: Revert to allow a user to modify launch items

<configuration>
    <launchSettings action="delete"/>
</configuration>